diff options
| author | Dhravya Shah <[email protected]> | 2025-02-14 12:43:55 -0800 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-02-14 12:43:55 -0800 |
| commit | 186efa4244846bf761c7cf4f9cc5d1087b8f95df (patch) | |
| tree | 16cca1d69a22ccee586ea0eb64703817ac2330f9 /apps/extension/src | |
| parent | docs: remove getting started title (diff) | |
| download | supermemory-186efa4244846bf761c7cf4f9cc5d1087b8f95df.tar.xz supermemory-186efa4244846bf761c7cf4f9cc5d1087b8f95df.zip | |
delete spaces
Diffstat (limited to 'apps/extension/src')
| -rw-r--r-- | apps/extension/src/background.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/extension/src/background.ts b/apps/extension/src/background.ts index 7d96feff..b02d027f 100644 --- a/apps/extension/src/background.ts +++ b/apps/extension/src/background.ts @@ -14,7 +14,7 @@ const tabStates = new Map<number, TabState>(); const checkIfLoggedIn = async () => { const baseURL = await getBaseURL(); - const response = await fetch(`${baseURL}/v1/session`); + const response = await fetch(`${baseURL}/backend/v1/session`); return response.status == 200; }; |