Skip to content

Commit 5b529cf

Browse files
committed
Fix typo.
1 parent 2411b15 commit 5b529cf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/diagnostics-app/src/library/powersync/ConnectionManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const getParams = () => {
2121
const stringifiedParams = localStorage.getItem(PARAMS_STORE);
2222
const params = safeParse(stringifiedParams);
2323
return params;
24-
}
24+
};
2525

2626
export const schemaManager = new DynamicSchemaManager();
2727

@@ -88,7 +88,7 @@ export async function connect() {
8888
if (!sync.syncStatus.connected) {
8989
// Disconnect but don't wait for it
9090
sync.disconnect();
91-
throw syncErrorTracker.lastSyncError ?? new Error('Failed to conncet');
91+
throw syncErrorTracker.lastSyncError ?? new Error('Failed to connect');
9292
} else {
9393
syncErrorTracker.lastSyncError = null;
9494
}

0 commit comments

Comments
 (0)