feat(ai): finalize AI magic edits epic rollout and operations
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-06 22:41:51 +01:00
parent 36bed12ff9
commit 1d2242fb4d
33 changed files with 2621 additions and 18 deletions

View File

@@ -10,6 +10,8 @@ export function useNotificationsBadge() {
const { data: count = 0 } = useQuery<number>({
queryKey: ['mobile', 'notifications', 'badge', 'tenant'],
staleTime: 60_000,
refetchInterval: 90_000,
refetchIntervalInBackground: true,
queryFn: async () => {
const logs = await listNotificationLogs({ perPage: 1 });
const meta: any = logs.meta ?? {};