Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
siarheidudko committed Dec 29, 2023
1 parent aaab1cb commit df5c6b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/auth/Action.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function Action() {
isShown: boolean;
}
);
const [searchParams, setSearchParams] = useSearchParams();
const [searchParams] = useSearchParams();
const mode: (typeof modes)[number] = modes.includes(
searchParams.get("mode") as any
)
Expand Down
2 changes: 1 addition & 1 deletion src/screens/BaseScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import SignUp from "../components/auth/SignUp";
import Recovery from "../components/auth/Action";

export default function BaseScreen() {
const [user, loading] = useAuthState(FirebaseAuth);
const [, loading] = useAuthState(FirebaseAuth);
const {
REACT_APP_AUTH_SIGNIN,
REACT_APP_AUTH_SIGNUP,
Expand Down

0 comments on commit df5c6b8

Please sign in to comment.