We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c1df1c commit 19476e9Copy full SHA for 19476e9
src/components/SignIn.tsx
@@ -248,9 +248,7 @@ const SignIn: FC = () => {
248
)}
249
</Stack>
250
</FormControl>
251
- <Link style={{ color: '#000' }} to={`${SIGN_UP_PATH}${search}`}>
252
- {t(SIGN_UP_LINK_TEXT)}
253
- </Link>
+ <Link to={`${SIGN_UP_PATH}${search}`}>{t(SIGN_UP_LINK_TEXT)}</Link>
254
</>
255
);
256
src/components/SignUp.tsx
@@ -211,10 +211,7 @@ const SignUp = () => {
211
</LoadingButton>
212
213
214
- <Link
215
- style={{ color: '#000' }}
216
- to={`${SIGN_IN_PATH}?${searchParams.toString()}`}
217
- >
+ <Link to={`${SIGN_IN_PATH}?${searchParams.toString()}`}>
218
{t(SIGN_IN_LINK_TEXT)}
219
</Link>
220
0 commit comments