-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add submissions page #74
Conversation
damianmarti
commented
Sep 4, 2024
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @damianmarti
Posted a few comments, but just fixed it in d50a1eb since it was small things
@@ -0,0 +1,31 @@ | |||
"use client"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need it!
import type { NextPage } from "next"; | ||
import { getAllSubmissions } from "~~/services/database/repositories/submissions"; | ||
|
||
const Admin: NextPage = async () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's change the name to "Submissions"
import { SubmissionCard } from "./_components/SubmissionCard"; | ||
import type { NextPage } from "next"; | ||
import { getAllSubmissions } from "~~/services/database/repositories/submissions"; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's add some metadata-
Thanks!!! |