File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/pages/communities/[slug]/challenges/[challenge_id]/submissions Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ import DefaultLayout from "@/components/layout/Default";
2
2
import SubmissionPopup from "@/components/popups/submission" ;
3
3
import Header from "@/components/sections/communities/_partials/Header" ;
4
4
import Wrapper from "@/components/sections/courses/Wrapper" ;
5
- import MetaData from "@/components/ui/MetaData" ;
5
+ import SubmissionList from "@/components/sections/submissions/List" ;
6
+ // import MetaData from "@/components/ui/MetaData";
6
7
import useSubmissionNavigation from "@/hooks/useSubmissionNavigation" ;
7
8
import { wrapper } from "@/store" ;
8
9
import { fetchAllSubmission , fetchChallenge } from "@/store/services/communities/challenges" ;
@@ -44,12 +45,12 @@ export default function Submission(props: { pageProps: { currentCommunity: Commu
44
45
< >
45
46
< Head >
46
47
< title > { `${ t ( "communities.submission.title" ) } ${ challenge ?. name } ` } </ title >
47
- < MetaData description = { challenge ?. description as string } />
48
+ { /* <MetaData description={challenge?.description as string} /> */ }
48
49
</ Head >
49
50
< Wrapper paths = { headerPaths } >
50
51
< div className = "flex flex-col py-4 space-y-8 text-gray-700" >
51
52
< Header title = { challenge ?. name } subtitle = { t ( "communities.submission.title" ) } isTeamChallenge = { challenge ?. isTeamChallenge } isHackathon = { challenge ?. isHackathon } />
52
- { /* <SubmissionList /> */ }
53
+ < SubmissionList />
53
54
</ div >
54
55
{ showPopup && < SubmissionPopup show = { showPopup } onClose = { handleCloseSubmission } submissionId = { selectedSubmission ?. id } /> }
55
56
</ Wrapper >
You can’t perform that action at this time.
0 commit comments