fix: whereby consent not displaying (#505)

This commit is contained in:
2025-07-22 12:20:26 -06:00
committed by GitHub
parent 6fedbbe63f
commit 24fabe3e86
3 changed files with 156 additions and 24 deletions

View File

@@ -118,7 +118,7 @@ const useConsentDialog = (
return (
<Button
ref={buttonRef}
colorPalette="blue"
colorPalette="primary"
size="sm"
onClick={() => {
handleConsent(meetingId, true).then(() => {
@@ -147,9 +147,8 @@ const useConsentDialog = (
recording on our servers?
</Text>
<HStack gap={4} justifyContent="center">
<AcceptButton />
<Button
colorPalette="gray"
variant="ghost"
size="sm"
onClick={() => {
handleConsent(meetingId, false).then(() => {
@@ -160,6 +159,7 @@ const useConsentDialog = (
>
No, delete after transcription
</Button>
<AcceptButton />
</HStack>
</VStack>
</Box>