diff --git a/src/components/project/components/ProjectSummary/ProjectSummary.tsx b/src/components/project/components/ProjectSummary/ProjectSummary.tsx index 6a696098..ce8efd76 100644 --- a/src/components/project/components/ProjectSummary/ProjectSummary.tsx +++ b/src/components/project/components/ProjectSummary/ProjectSummary.tsx @@ -14,7 +14,7 @@ export const ProjectSummary: React.FC = ({ 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 ( diff --git a/src/features/checker/ApplicationView.tsx b/src/features/checker/ApplicationView.tsx new file mode 100644 index 00000000..2e01d5a7 --- /dev/null +++ b/src/features/checker/ApplicationView.tsx @@ -0,0 +1,14 @@ +import { CheckerProvider } from "~checker/store"; + +import { + ViewApplicationEvaluationsPage, + type ViewApplicationEvaluationsPageProps, +} from "./pages/ViewApplicationEvaluationsPage/ViewApplicationEvaluationsPage"; + +export const ApplicationView: React.FC = (props) => { + return ( + + + + ); +}; \ No newline at end of file diff --git a/src/features/checker/index.ts b/src/features/checker/index.ts index 950cd59b..d65d59cf 100644 --- a/src/features/checker/index.ts +++ b/src/features/checker/index.ts @@ -1,2 +1,2 @@ export * from "./Checker"; -export * from "./pages"; \ No newline at end of file +export * from "./ApplicationView"