Skip to content

Commit 7231f62

Browse files
committed
Fix signup and login links
1 parent 6f4a0ea commit 7231f62

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/pages/LogIn/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const LogIn: React.FC = () => {
134134
textDecoration: "underline",
135135
},
136136
}}
137-
onClick={() => navigate("/signup")}
137+
onClick={() => navigate("/auth/signup")}
138138
>
139139
Sign up
140140
</StyledTypography>

frontend/src/pages/SignUp/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const SignUp: React.FC = () => {
172172
textDecoration: "underline",
173173
},
174174
}}
175-
onClick={() => navigate("/login")}
175+
onClick={() => navigate("/auth/login")}
176176
>
177177
Log in
178178
</Typography>

0 commit comments

Comments
 (0)