We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5019af7 commit 38920c0Copy full SHA for 38920c0
2 files changed
src/lib/constants/permissions.ts
@@ -25,6 +25,7 @@ export const DEFAULT_PERMISSIONS = {
25
public_skills: false,
26
notes: false,
27
public_notes: false,
28
+ folders: false,
29
public_chats: false,
30
public_calendars: false
31
},
src/routes/+layout.svelte
@@ -475,7 +475,7 @@
475
const type = event?.data?.type ?? null;
476
const data = event?.data?.data ?? null;
477
478
- // Calendar alerts are not chat-scoped — handle before chat_id checks
+ // Calendar alerts are not chat-scoped, handle before chat_id checks
479
if (type === 'calendar:alert' && data) {
480
const timeStr =
481
data.minutes_until <= 0
0 commit comments