mirror of
https://github.com/supabase/supabase.git
synced 2026-05-22 17:00:43 +08:00
* design polish * better banner * defensive truncation * better incident banner * better prop names * improve warnings * fix variant * OrganizationResourceBanner * notice banner * improve ClockSkewBanner * add ARIA label * rabbit * lil dot * 📝 Add docstrings to `dnywh/chore/improve-header-banner` (#41526) * 📝 Add docstrings to `dnywh/chore/improve-header-banner` Docstrings generation was requested by @dnywh. * https://github.com/supabase/supabase/pull/41525#issuecomment-3680124020 The following files were modified: * `apps/studio/hooks/misc/useOrganizationRestrictions.ts` * new line --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Danny White <3104761+dnywh@users.noreply.github.com> * fix clock docs link * Small nits * Fix URL for grace period warning to point to usage instead of billing * rabbit --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
8 lines
327 B
TypeScript
8 lines
327 B
TypeScript
export const miscKeys = {
|
|
cliReleaseVersion: () => ['cliReleaseVersion'] as const,
|
|
defaultRegion: (cloudProvider: string | undefined, useRestrictedPool: boolean) =>
|
|
['defaultRegion', [cloudProvider, useRestrictedPool]] as const,
|
|
ipAddress: () => ['ip-address'] as const,
|
|
clockSkew: () => ['clock-skew'] as const,
|
|
}
|