Skip to content

Commit 42ccf8c

Browse files
authored
fixed format (#616)
# PRの概要 ## 具体的な変更内容 ## 影響範囲 ## 動作要件 ## 補足 ## レビューリクエストを出す前にチェック! - [ ] 改めてセルフレビューしたか - [ ] 手動での動作検証を行ったか - [ ] server の機能追加ならば、テストを書いたか - 理由: 書いた | server の機能追加ではない - [ ] 間違った使い方が存在するならば、それのドキュメントをコメントで書いたか - 理由: 書いた | 間違った使い方は存在しない - [ ] わかりやすいPRになっているか <!-- レビューリクエスト後は、Slackでもメンションしてお願いすることを推奨します。 -->
1 parent 7170340 commit 42ccf8c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

web/app/settings/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import Link from "next/link";
22
import { MdChevronRight } from "react-icons/md";
33
import LogOutButton from "~/components/LogOutButton";
4-
import { NavigateByAuthState } from "~/components/common/NavigateByAuthState";
54

65
function Item({
76
href,

web/app/tutorial/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export default function Layout({
1111
<>
1212
<Header title="チュートリアル/Tutorial" />
1313
<NavigateByAuthState type="toLoginForUnauthenticated">
14-
<div className="flex-1">{children}</div>
14+
<div className="flex-1">{children}</div>
1515
</NavigateByAuthState>
1616
<div className="m-4 text-center">
1717
<Link href="/home" className="btn btn-primary w-full">

0 commit comments

Comments
 (0)