This repository was archived by the owner on Feb 10, 2025. It is now read-only.
File tree 3 files changed +16
-2
lines changed
components/project/components/ProjectSummary
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export const ProjectSummary: React.FC<ProjectSummaryProps> = ({ projectMetadata
14
14
15
15
const appliedOnLabel = `Applied on: ${ new Date ( createdAt ) . toLocaleString ( ) } ` ;
16
16
const lastEditedLabel = `Last edited: ${ new Date (
17
- lastUpdated . toString ( ) == "0" ? lastUpdated : createdAt ,
17
+ lastUpdated . toString ( ) ! == "0" ? lastUpdated : createdAt ,
18
18
) . toLocaleString ( ) } `;
19
19
20
20
return (
Original file line number Diff line number Diff line change
1
+ import { CheckerProvider } from "~checker/store" ;
2
+
3
+ import {
4
+ ViewApplicationEvaluationsPage ,
5
+ type ViewApplicationEvaluationsPageProps ,
6
+ } from "./pages/ViewApplicationEvaluationsPage/ViewApplicationEvaluationsPage" ;
7
+
8
+ export const ApplicationView : React . FC < ViewApplicationEvaluationsPageProps > = ( props ) => {
9
+ return (
10
+ < CheckerProvider >
11
+ < ViewApplicationEvaluationsPage { ...props } />
12
+ </ CheckerProvider >
13
+ ) ;
14
+ } ;
Original file line number Diff line number Diff line change 1
1
export * from "./Checker" ;
2
- export * from "./pages" ;
2
+ export * from "./ApplicationView"
You can’t perform that action at this time.
0 commit comments