Skip to content

Commit 5e1c986

Browse files
committed
Graphite fixes: typo, slashes
1 parent 6f28658 commit 5e1c986

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/obsidian/src/components/AdminPanelSettings.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const AdminPanelSettings = () => {
6767
}
6868
if (data)
6969
window.open(
70-
`${nextRoot()}/auth/token?t=${data}&url=/auth/group`,
70+
`${nextRoot()}auth/token?t=${data}&url=/auth/group`,
7171
"_blank",
7272
);
7373
};

apps/roam/src/components/settings/AdminPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ const FeatureFlagsTab = (): React.ReactElement => {
327327
}
328328
if (data)
329329
window.open(
330-
`${nextRoot()}/auth/token?t=${data}&url=/auth/group`,
330+
`${nextRoot()}auth/token?t=${data}&url=/auth/group`,
331331
"_blank",
332332
);
333333
};

apps/website/app/components/auth/LoginWithToken.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const LoginWithToken = () => {
7575
router.replace(url);
7676
}
7777
} catch (error) {
78-
setError("Unkown error while logging you in.");
78+
setError("Unknown error while logging you in.");
7979
internalError({ error, type: "token-login-exception" });
8080
} finally {
8181
setDone(true);

0 commit comments

Comments
 (0)