remove permissions modal on windows

This commit is contained in:
Arjun 2026-03-19 22:05:37 +05:30
parent 354c666c81
commit 633ffb9156

View file

@ -3414,8 +3414,8 @@ function App() {
meetingNotePathRef.current = null
}
} else if (meetingTranscription.state === 'idle') {
// Show permissions modal on first use
if (!localStorage.getItem('meeting-permissions-acknowledged')) {
// Show permissions modal on first use (macOS only — Windows works out of the box)
if (isMac && !localStorage.getItem('meeting-permissions-acknowledged')) {
setShowMeetingPermissions(true)
return
}