Skip to content

Commit a248d3b

Browse files
NicolappsConvex, Inc.
authored andcommitted
Replace assatisfies (#41138)
GitOrigin-RevId: c06ed61351658b57fb5cbac8ec82a898537a92ae
1 parent b3ae141 commit a248d3b

File tree

1 file changed

+1
-1
lines changed
  • npm-packages/@convex-dev/react-query/src

1 file changed

+1
-1
lines changed

npm-packages/@convex-dev/react-query/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ export class ConvexQueryClient {
157157
if (typeof client === "string") {
158158
this.convexClient = new ConvexReactClient(client, options);
159159
} else {
160-
this.convexClient = client as ConvexReactClient;
160+
this.convexClient = client satisfies ConvexReactClient;
161161
}
162162
if (options.dangerouslyUseInconsistentQueriesDuringSSR) {
163163
this.ssrQueryMode = "inconsistent";

0 commit comments

Comments
 (0)