Skip to content

Commit

Permalink
ci: apply biome fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dominik-stumpf committed Jul 9, 2024
1 parent b59e7d0 commit 5e868e8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Cypress.Commands.add("clearIndexedDB", () => {
indexedDB.deleteDatabase("guild.xyz")
})

// eslint-disable-next-line @typescript-eslint/no-namespace
// biome-ignore lint/style/noNamespace: <explanation>
declare namespace Cypress {
interface Chainable {
getByDataTest(selector: string): Chainable<JQuery<HTMLElement>>
Expand Down
6 changes: 3 additions & 3 deletions src/hooks/useOAuthResultToast.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export default function useOAuthResultToast() {
useEffect(() => {
if (query["oauth-status"]) {
const {
["oauth-platform"]: oauthPlatform,
["oauth-status"]: oauthStatus,
["oauth-message"]: oauthMessage,
"oauth-platform": oauthPlatform,
"oauth-status": oauthStatus,
"oauth-message": oauthMessage,
...newQuery
} = query

Expand Down

0 comments on commit 5e868e8

Please sign in to comment.