Skip to content

Commit f01dedd

Browse files
authored
fix: Fix minor issue in the foreign key selector (supabase#41235)
Change the isPending state to isLoading.
1 parent 70388e5 commit f01dedd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/studio/components/interfaces/TableGridEditor/SidePanelEditor/ForeignKeySelector/ForeignKeySelector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export const ForeignKeySelector = ({
7777
includeColumns: false,
7878
})
7979

80-
const { data: selectedTable, isPending: isLoadingSelectedTable } = useTableQuery<PostgresTable>(
80+
const { data: selectedTable, isLoading: isLoadingSelectedTable } = useTableQuery<PostgresTable>(
8181
{
8282
projectRef: project?.ref,
8383
connectionString: project?.connectionString,

e2e/studio/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default defineConfig({
4141
maxFailures: 3,
4242
// Due to rate API rate limits run tests in serial mode on platform.
4343
fullyParallel: !env.IS_PLATFORM,
44-
workers: env.IS_PLATFORM ? 1 : 5,
44+
workers: env.IS_PLATFORM ? 1 : 3,
4545
use: {
4646
baseURL: env.STUDIO_URL,
4747
screenshot: 'off',

0 commit comments

Comments
 (0)