Skip to content

Commit

Permalink
fix(cspell): add inline ignore comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rndquu committed Mar 14, 2024
1 parent 8f276fd commit 4a54593
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
"UBIQUIBOT",
"URLSAFE",
"WXDAI",
"wfzpewmlyiozupulbuur",
"XDAI",
"xmark",
"SUPABASE"
Expand Down
1 change: 1 addition & 0 deletions cypress/e2e/main.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ describe("Homepage tests", () => {
statusCode: 200,
});
// Simulate login token
// cspell:ignore wfzpewmlyiozupulbuur
window.localStorage.setItem("sb-wfzpewmlyiozupulbuur-auth-token", JSON.stringify(loginToken));
}).as("githubLogin");
cy.get("#github-login-button").click();
Expand Down
1 change: 1 addition & 0 deletions static/scripts/onboarding/github-login-button.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ function getNewSessionToken() {
}

function getSessionToken() {
// cspell:ignore wfzpewmlyiozupulbuur
const cachedSessionToken = getLocalStore<OAuthToken>("sb-wfzpewmlyiozupulbuur-auth-token");
if (cachedSessionToken) {
return cachedSessionToken.provider_token;
Expand Down

0 comments on commit 4a54593

Please sign in to comment.