diff --git a/frontend/obsidian-plugin/src/views/settings-tab.ts b/frontend/obsidian-plugin/src/views/settings-tab.ts index d37a26dc..ff796b3b 100644 --- a/frontend/obsidian-plugin/src/views/settings-tab.ts +++ b/frontend/obsidian-plugin/src/views/settings-tab.ts @@ -121,7 +121,7 @@ export class SyncSettingsTab extends PluginSettingTab { .setTooltip("This is the URL of the server you want to sync with.") .addText((text) => text - .setPlaceholder("https://example.com:3030") + .setPlaceholder("https://example.com:3000") .setValue(this.syncClient.settings.getSettings().remoteUri) .onChange(async (value) => this.syncClient.settings.setSetting("remoteUri", value) diff --git a/frontend/test-client/src/cli.ts b/frontend/test-client/src/cli.ts index ea7ebbd0..440998f9 100644 --- a/frontend/test-client/src/cli.ts +++ b/frontend/test-client/src/cli.ts @@ -30,7 +30,7 @@ async function runTest({ token: "token", vaultName: uuidv4(), syncConcurrency: concurrency, - remoteUri: "http://localhost:3030" + remoteUri: "http://localhost:3000" }; const clients: MockAgent[] = []; diff --git a/scripts/update-api-types.sh b/scripts/update-api-types.sh index d0aa2357..0827f9a8 100755 --- a/scripts/update-api-types.sh +++ b/scripts/update-api-types.sh @@ -1,4 +1,4 @@ #!/bin/bash npm install -g openapi-typescript -openapi-typescript http://localhost:3030/api.json --output frontend/sync-client/src/services/types.ts +openapi-typescript http://localhost:3000/api.json --output frontend/sync-client/src/services/types.ts