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 d810680 commit 7ce0938Copy full SHA for 7ce0938
client/src/App.tsx
@@ -204,7 +204,7 @@ const App = () => {
204
]);
205
},
206
getRoots: () => rootsRef.current,
207
- defaultLoggingLevel: logLevel
+ defaultLoggingLevel: logLevel,
208
});
209
210
useEffect(() => {
client/src/lib/hooks/useConnection.ts
@@ -64,7 +64,7 @@ interface UseConnectionOptions {
64
onPendingRequest?: (request: any, resolve: any, reject: any) => void;
65
// eslint-disable-next-line @typescript-eslint/no-explicit-any
66
getRoots?: () => any[];
67
- defaultLoggingLevel?: LoggingLevel,
+ defaultLoggingLevel?: LoggingLevel;
68
}
69
70
export function useConnection({
0 commit comments