mirror of
https://github.com/supabase/supabase.git
synced 2026-07-07 07:30:21 +08:00
* Update notification v2 popover * Update notifications empty state language based on filters * Fix typo * Update apps/studio/state/notifications.ts Co-authored-by: Alaister Young <alaister@users.noreply.github.com> --------- Co-authored-by: Alaister Young <alaister@users.noreply.github.com>
7 lines
249 B
TypeScript
7 lines
249 B
TypeScript
export const notificationKeys = {
|
|
list: () => ['notifications'] as const,
|
|
listV2: (options?: { status?: string; limit: number; filters: any }) =>
|
|
['notifications', options] as const,
|
|
summary: () => ['notifications', 'summary'] as const,
|
|
}
|