Skip to content

Commit

Permalink
Users should be presented with a reset password link
Browse files Browse the repository at this point in the history
  • Loading branch information
Jadowacu1 committed Jul 9, 2024
1 parent 1f38c2a commit 10eccf6
Show file tree
Hide file tree
Showing 41 changed files with 7,246 additions and 3,346 deletions.
12 changes: 9 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
"airbnb-typescript",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jsx-a11y/recommended",
"plugin:storybook/recommended"
],
"ignorePatterns":["jest.config.ts"],
"ignorePatterns": ["jest.config.ts"],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
Expand Down Expand Up @@ -58,7 +59,12 @@
"no-param-reassign": "off",
"arrow-body-style": ["warn", "as-needed"],
"jsx-a11y/no-static-element-interactions": "off",
"max-len": "off"
"max-len": "off",
"jsx-a11y/label-has-associated-control": ["error", {
"required": {
"some": ["nesting", "id"]
}
}]
},
"settings": {
"react": {
Expand All @@ -72,4 +78,4 @@
}
}
}
}
}
10 changes: 10 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[[redirects]]
from = "/*"
to = "/index.html"
status = 200

[[redirects]]
from = "/api/*"
to = "/index.html"
status = 200
force = true
Loading

0 comments on commit 10eccf6

Please sign in to comment.