fix (eslint): linting

This commit is contained in:
Mickael Kerjean
2022-01-31 17:19:35 +11:00
parent 8ce629e010
commit c6da62a94c
30 changed files with 1965 additions and 1592 deletions

View File

@ -10,7 +10,7 @@ export function HomePageComponent({ error }) {
useEffect(() => {
const p = new URLSearchParams(location.search);
if(p.get("error")) {
if (p.get("error")) {
error(new Error(t(p.get("error"))));
return;
}