Skip to content

Commit 8b9ce38

Browse files
committed
Fix formatting
1 parent b83ce97 commit 8b9ce38

File tree

2 files changed

+4
-3
lines changed
  • dev-packages/browser-integration-tests/suites/integrations/supabase/db-operations
  • packages/core/src/integrations

2 files changed

+4
-3
lines changed

dev-packages/browser-integration-tests/suites/integrations/supabase/db-operations/test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { Page, expect } from '@playwright/test';
1+
import type { Page} from '@playwright/test';
2+
import { expect } from '@playwright/test';
23
import type { Event } from '@sentry/core';
34

45
import { sentryTest } from '../../../../utils/fixtures';
@@ -63,7 +64,7 @@ sentryTest('should include correct data payload in Supabase breadcrumbs', async
6364
expect(supabaseBreadcrumb).toBeDefined();
6465
expect(supabaseBreadcrumb?.data).toMatchObject({
6566
query: expect.arrayContaining([
66-
"filter(columns, )"
67+
'filter(columns, )'
6768
]),
6869
});
6970
});

packages/core/src/integrations/supabase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ const instrumentSupabase = (supabaseClient: unknown): void => {
416416

417417
const INTEGRATION_NAME = 'Supabase';
418418

419-
const _supabaseIntegration = ((supabaseClient) => {
419+
const _supabaseIntegration = (supabaseClient => {
420420
return {
421421
name: INTEGRATION_NAME,
422422
setupOnce() {

0 commit comments

Comments
 (0)