diff --git a/src/components/Meeting/MeetingCurrentResponse.tsx b/src/components/Meeting/MeetingCurrentResponse.tsx index 4bbc019..0ac0c16 100644 --- a/src/components/Meeting/MeetingCurrentResponse.tsx +++ b/src/components/Meeting/MeetingCurrentResponse.tsx @@ -50,7 +50,7 @@ export const MeetingCurrentResponse = function MeetingCurrentResponse({ {chatId !== 0 && lastStreamId !== 0 && } - {!chatId && } + {!chatId && }
diff --git a/src/components/Meeting/MeetingFirstQuestionSidePanel.tsx b/src/components/Meeting/MeetingFirstQuestionSidePanel.tsx index 8712896..cb6d9b8 100644 --- a/src/components/Meeting/MeetingFirstQuestionSidePanel.tsx +++ b/src/components/Meeting/MeetingFirstQuestionSidePanel.tsx @@ -1,7 +1,19 @@ +import type { MeetingInputContext } from '@types' import { GlobalColContainer } from 'components/Global/GlobalColContainer' import { OneThirdScreenWidth } from 'components/Global/OneThirdScreenWidth' +import { useEffect } from 'react' -export function MeetingFirstQuestionHelper(setQuestionInput) { +export function MeetingFirstQuestionHelper({ + setContext, +}: { + setContext: React.Dispatch> +}) { + useEffect(() => { + setContext({ + administrations: [], + themes: [], + }) + }, []) return ( diff --git a/vite.config.ts b/vite.config.ts index f72af90..a84b696 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -23,7 +23,7 @@ export default () => { }, host: true, strictPort: true, - port: 4173, + port: 4172, }, base: '/', })