File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export default class PostgrestQueryBuilder<T> extends PostgrestBuilder<T> {
16
16
shouldThrowOnError ?: boolean
17
17
} = { }
18
18
) {
19
- super ( { fetch, shouldThrowOnError } as unknown as PostgrestBuilder < T > )
19
+ super ( ( { fetch, shouldThrowOnError } as unknown ) as PostgrestBuilder < T > )
20
20
this . url = new URL ( url )
21
21
this . headers = { ...headers }
22
22
this . schema = schema
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export default class PostgrestRpcBuilder<T> extends PostgrestBuilder<T> {
16
16
shouldThrowOnError ?: boolean
17
17
} = { }
18
18
) {
19
- super ( { fetch, shouldThrowOnError } as unknown as PostgrestBuilder < T > )
19
+ super ( ( { fetch, shouldThrowOnError } as unknown ) as PostgrestBuilder < T > )
20
20
this . url = new URL ( url )
21
21
this . headers = { ...headers }
22
22
this . schema = schema
You can’t perform that action at this time.
0 commit comments