mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 18:04:42 +08:00
* fix(studio): use paginated buckets query for useSelectedBucket Part of the effort to migrate all buckets list queries to the paginated version. This migrates the useSelectedBucket hook, which is used on the bucket details page to fetch the bucket info. * fix(studio): flash of stale content when switching buckets There's a flash of stale content when switching between buckets in the File Explorer. This happens since the change to useSelectedBucket, because when the bucket changes, the new data is no longer available immediately. It must be awaited, and meanwhile `columns` in global storage state is stale. This commit adds a check for whether the state is stale by checking the current ID against the stored ID. --------- Co-authored-by: Ali Waseem <waseema393@gmail.com>