diff --git a/apps/client/src/stores/datasetSelectionTrrackedStore.ts b/apps/client/src/stores/datasetSelectionTrrackedStore.ts index 5a3ef961..a9b906b8 100644 --- a/apps/client/src/stores/datasetSelectionTrrackedStore.ts +++ b/apps/client/src/stores/datasetSelectionTrrackedStore.ts @@ -23,9 +23,9 @@ export const useDatasetSelectionTrrackedStore = defineStore( const serverUrl = ref( `${httpValue}${configStore.envServerUrl}` ); - // Location of webscoket for DuckDb as specified in NGINX + // Location of websocket for DuckDb as specified in NGINX const duckDbWebsocketUrl = ref( - `${wsValue}${configStore.envServerUrl.replace('/data', 'ws')}` + `${wsValue}${configStore.envServerUrl.replace('/data', '/ws/')}` ); // Environment based location of data retrieval for DuckDb