Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pages/submit-meeting-summary/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ const SubmitMeetingSummary: NextPage = () => {
noSummaryGiven(); // Your existing function to handle no summary
} else if (newStatus === 'canceledSummary') {
// Implement logic for canceled summary
//console.log("Canceled Summary", myVariable);
setMyVariable(prevMyVariable => ({
...prevMyVariable,
summary: {
Expand Down Expand Up @@ -364,7 +365,7 @@ const SubmitMeetingSummary: NextPage = () => {
title="All values will be cleared, so please make sure to select all dropdowns and fill in all fields"
>Clear Summary
</button>
{myVariable.roles?.isAdmin && activeComponent == 'four' && (
{myVariable.roles?.isAdmin && (
<select
className={styles.select}
value={summaryStatus}
Expand Down