Skip to content

Commit 19476e9

Browse files
committed
fix: remove unnecessary style tag
1 parent 0c1df1c commit 19476e9

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/components/SignIn.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,7 @@ const SignIn: FC = () => {
248248
)}
249249
</Stack>
250250
</FormControl>
251-
<Link style={{ color: '#000' }} to={`${SIGN_UP_PATH}${search}`}>
252-
{t(SIGN_UP_LINK_TEXT)}
253-
</Link>
251+
<Link to={`${SIGN_UP_PATH}${search}`}>{t(SIGN_UP_LINK_TEXT)}</Link>
254252
</>
255253
);
256254

src/components/SignUp.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,7 @@ const SignUp = () => {
211211
</LoadingButton>
212212
</Stack>
213213
</FormControl>
214-
<Link
215-
style={{ color: '#000' }}
216-
to={`${SIGN_IN_PATH}?${searchParams.toString()}`}
217-
>
214+
<Link to={`${SIGN_IN_PATH}?${searchParams.toString()}`}>
218215
{t(SIGN_IN_LINK_TEXT)}
219216
</Link>
220217
</Stack>

0 commit comments

Comments
 (0)