Skip to content

fix(site): fix redirection to login after logout/change password #6870

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 29, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
eslint false positive
  • Loading branch information
rodrimaia committed Mar 29, 2023
commit dbca115e07bb086c29c1e5ab4853a57b42ad2bb9
17 changes: 8 additions & 9 deletions site/.eslintrc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ overrides:
# https://coder.com/docs/v2/latest/contributing/frontend#tests-getting-too-slow.
testing-library/no-node-access: off
testing-library/no-container: off
- files: ["e2e/**/*.[tj]s"]
extends: ["plugin:testing-library/react", "plugin:testing-library/dom"]
rules:
testing-library/prefer-screen-queries: "off"
root: true
rules:
"@typescript-eslint/brace-style":
Expand Down Expand Up @@ -107,20 +111,16 @@ rules:
- error
- paths:
- name: "@material-ui/core"
message:
"Use path imports to avoid pulling in unused modules. See:
message: "Use path imports to avoid pulling in unused modules. See:
https://material-ui.com/guides/minimizing-bundle-size/"
- name: "@material-ui/icons"
message:
"Use path imports to avoid pulling in unused modules. See:
message: "Use path imports to avoid pulling in unused modules. See:
https://material-ui.com/guides/minimizing-bundle-size/"
- name: "@material-ui/styles"
message:
"Use path imports to avoid pulling in unused modules. See:
message: "Use path imports to avoid pulling in unused modules. See:
https://material-ui.com/guides/minimizing-bundle-size/"
- name: "@material-ui/core/Avatar"
message:
"You should use the Avatar component provided on
message: "You should use the Avatar component provided on
components/Avatar/Avatar"
no-unused-vars: "off"
"object-curly-spacing": "off"
Expand Down Expand Up @@ -156,7 +156,6 @@ rules:
message: "Default React import not allowed",
},
]

settings:
react:
version: detect
Expand Down