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 2411b15 commit 5b529cfCopy full SHA for 5b529cf
tools/diagnostics-app/src/library/powersync/ConnectionManager.ts
@@ -21,7 +21,7 @@ export const getParams = () => {
21
const stringifiedParams = localStorage.getItem(PARAMS_STORE);
22
const params = safeParse(stringifiedParams);
23
return params;
24
-}
+};
25
26
export const schemaManager = new DynamicSchemaManager();
27
@@ -88,7 +88,7 @@ export async function connect() {
88
if (!sync.syncStatus.connected) {
89
// Disconnect but don't wait for it
90
sync.disconnect();
91
- throw syncErrorTracker.lastSyncError ?? new Error('Failed to conncet');
+ throw syncErrorTracker.lastSyncError ?? new Error('Failed to connect');
92
} else {
93
syncErrorTracker.lastSyncError = null;
94
}
0 commit comments