Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

fix: Add application view #50

Merged
merged 4 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const ProjectSummary: React.FC<ProjectSummaryProps> = ({ projectMetadata

const appliedOnLabel = `Applied on: ${new Date(createdAt).toLocaleString()}`;
const lastEditedLabel = `Last edited: ${new Date(
lastUpdated.toString() == "0" ? lastUpdated : createdAt,
lastUpdated.toString() !== "0" ? lastUpdated : createdAt,
).toLocaleString()}`;

return (
Expand Down
14 changes: 14 additions & 0 deletions src/features/checker/ApplicationView.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { CheckerProvider } from "~checker/store";

import {
ViewApplicationEvaluationsPage,
type ViewApplicationEvaluationsPageProps,
} from "./pages/ViewApplicationEvaluationsPage/ViewApplicationEvaluationsPage";

export const ApplicationView: React.FC<ViewApplicationEvaluationsPageProps> = (props) => {
return (
<CheckerProvider>
<ViewApplicationEvaluationsPage {...props} />
</CheckerProvider>
);
};
2 changes: 1 addition & 1 deletion src/features/checker/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "./Checker";
export * from "./pages";
export * from "./ApplicationView"