Skip to content

Commit 67bc573

Browse files
committed
fix: ログアウト機能
1 parent b926bd4 commit 67bc573

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

app/pages/ErrorBoundaryPage/ErrorPageBase/index.tsx

-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// const Centered = styled('div', {
2-
// height: '100%',
3-
// display: 'flex',
4-
// justifyContent: 'center',
5-
// alignItems: 'center',
6-
// flexDirection: 'column',
7-
// gap: '1rem',
8-
// textAlign: 'center',
9-
// });
10-
111
interface Props {
122
title: string;
133
message: string;

app/routes/login.tsx

+1-11
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,13 @@ export async function loader({ request, context }: LoaderFunctionArgs) {
1212
return null;
1313
};
1414

15-
// const Centered = styled('div', {
16-
// height: '100%',
17-
// display: 'flex',
18-
// justifyContent: 'center',
19-
// alignItems: 'center',
20-
// flexDirection: 'column',
21-
// gap: '1rem',
22-
// textAlign: 'center',
23-
// });
24-
2515
export default function LoginPage() {
2616
return (
2717
<div data-scrollable="false">
2818
<p>ログインしてください</p>
2919

3020
<Form action="/auth/login" method="post">
31-
<button type="submit">Login with Google</button>
21+
<button type="submit">Login</button>
3222
</Form>
3323
</div>
3424
);

0 commit comments

Comments
 (0)