Skip to content

Commit

Permalink
Remove layout from login page (#889)
Browse files Browse the repository at this point in the history
  • Loading branch information
evroon authored Sep 7, 2024
1 parent ed249a9 commit 5d59fdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"eslint-plugin-testing-library": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"markdownlint-cli2": "^0.11.0",
"markdownlint-cli2": "^0.14.0",
"markdownlint-rule-relative-links": "^2.1.1",
"postcss": "^8.4.32",
"postcss-preset-mantine": "^1.11.1",
Expand Down
5 changes: 2 additions & 3 deletions frontend/src/pages/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import React, { useEffect } from 'react';
// import useStyles from '../components/login/login.styles';
import { tokenPresent } from '../services/local_storage';
import { performLogin } from '../services/user';
import Layout from './_layout';

export default function Login() {
// const { classes } = useStyles();
Expand Down Expand Up @@ -58,7 +57,7 @@ export default function Login() {
});

return (
<Layout>
<>
<Title ta="center" mt={100}>
{t('welcome_title')}{' '}
<Text inherit variant="gradient" component="span">
Expand Down Expand Up @@ -121,7 +120,7 @@ export default function Login() {
</Text>
</Paper>
</Container>
</Layout>
</>
);
}

Expand Down

0 comments on commit 5d59fdc

Please sign in to comment.