Merge pull request #1191 from DemonicQuasar/patch-1

Update Login.jsx to remove Sign up link
This commit is contained in:
Alexander Holliday
2024-11-23 23:48:08 -08:00
committed by GitHub
-17
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>
);
};