mirror of
https://github.com/supabase/supabase.git
synced 2026-07-04 23:14:28 +08:00
* add loading and error states * fix cmd k menu links * Add hook for getting user's ip address --------- Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
7 lines
283 B
TypeScript
7 lines
283 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,
|
|
}
|