Skip to content

Commit b30a399

Browse files
committed
chore: npm run format
1 parent bdfcd7b commit b30a399

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/PostgrestQueryBuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class PostgrestQueryBuilder<T> extends PostgrestBuilder<T> {
1616
shouldThrowOnError?: boolean
1717
} = {}
1818
) {
19-
super({ fetch, shouldThrowOnError } as unknown as PostgrestBuilder<T>)
19+
super(({ fetch, shouldThrowOnError } as unknown) as PostgrestBuilder<T>)
2020
this.url = new URL(url)
2121
this.headers = { ...headers }
2222
this.schema = schema

src/lib/PostgrestRpcBuilder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default class PostgrestRpcBuilder<T> extends PostgrestBuilder<T> {
1616
shouldThrowOnError?: boolean
1717
} = {}
1818
) {
19-
super({ fetch, shouldThrowOnError } as unknown as PostgrestBuilder<T>)
19+
super(({ fetch, shouldThrowOnError } as unknown) as PostgrestBuilder<T>)
2020
this.url = new URL(url)
2121
this.headers = { ...headers }
2222
this.schema = schema

0 commit comments

Comments
 (0)