We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ace4036 commit 116fca5Copy full SHA for 116fca5
packages/core/src/integrations/supabase.ts
@@ -348,7 +348,7 @@ function instrumentPostgRESTFilterBuilder(PostgRESTFilterBuilder: PostgRESTFilte
348
queryItems.push(translateFiltersIntoMethods(key, value));
349
}
350
351
- const body: Record<string, unknown> = {};
+ const body: Record<string, unknown> = Object.create(null);
352
if (isPlainObject(typedThis.body)) {
353
for (const [key, value] of Object.entries(typedThis.body)) {
354
body[key] = value;
0 commit comments