From a48b0a0b61e69efec9d4b0c15cf299ad2a117bb0 Mon Sep 17 00:00:00 2001 From: Roland Schlaefli Date: Tue, 20 Dec 2022 10:37:48 +0100 Subject: [PATCH] feat: add tentative accept form --- src/pages/index.tsx | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 0a1c007..2caf8e8 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -203,6 +203,23 @@ function AcceptProposalForm({ proposalName, proposalId, supervisorEmail }) { ) } +function TentativeAcceptProposalForm({ + proposalName, + proposalId, + supervisorEmail, +}) { + return ( + + ) +} + function RejectProposalForm({ proposalName, proposalId, supervisorEmail }) { return ( + @@ -538,6 +560,18 @@ function Index() { supervisorEmail={session?.user?.email} /> + + +