Skip to content

Commit

Permalink
[#15] Fix doom element id
Browse files Browse the repository at this point in the history
  • Loading branch information
dedenbangkit committed Sep 6, 2023
1 parent 97c4256 commit 1371df0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"no-delete-var": "warn",
"prefer-const": "warn",
"prefer-arrow-callback": "error",
"react/no-unknown-property": ["error", { "ignore": ["testid"] }],
"react/no-unknown-property": ["warn", { "ignore": ["testid"] }],
"react/prefer-stateless-function": "warn",
"react-hooks/rules-of-hooks": "warn",
"react-hooks/exhaustive-deps": "warn",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import App from "./App";
import reportWebVitals from "./reportWebVitals";
import { BrowserRouter as Router } from "react-router-dom";

const container = document.getElementById("app");
const container = document.getElementById("root");
const root = createRoot(container);

root.render(
Expand Down

0 comments on commit 1371df0

Please sign in to comment.