Update Login.jsx to remove Sign up link

Removing sign up link as per issue #1180.
This commit is contained in:
DemonicQuasar
2024-11-23 06:18:56 -06:00
committed by GitHub
parent f013797c40
commit 435345fa3d

View File

@@ -548,23 +548,6 @@ const Login = () => {
)
)}
</Stack>
<Box
textAlign="center"
p={theme.spacing(12)}
>
<Typography display="inline-block">Don&apos;t have an account? </Typography>
<Typography
component="span"
color={theme.palette.primary.main}
ml={theme.spacing(2)}
onClick={() => {
navigate("/register");
}}
sx={{ userSelect: "none" }}
>
Sign Up
</Typography>
</Box>
</Stack>
);
};