Skip to content

Commit fb424db

Browse files
committed
:chore: Fix format (#2197)
1 parent 83bd289 commit fb424db

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

src/lib/components/SubmissionStatus/IconForUpdating.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
<!-- src/lib/components/SubmissionStatus/SubmissionStatusImage.svelte -->
1313
{#if isLoggedIn}
1414
<div class="flex items-center justify-center text-sm space-x-1">
15-
<div class="dark:text-gray-300">
16-
更新
17-
</div>
15+
<div class="dark:text-gray-300">更新</div>
1816

1917
<div class="text-primary-600 dark:text-gray-300 inline">
2018
<ChevronDown size="16" />

src/lib/components/SubmissionStatus/SubmissionStatusImage.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@
2727
<!-- TODO: Redirect to login screen when user is not logged in -->
2828
{#if isLoggedIn}
2929
<div class="flex flex-col items-center ml-2 md:ml-4 text-xs">
30-
<div class="pb-1 dark:text-gray-300">
31-
更新
32-
</div>
30+
<div class="pb-1 dark:text-gray-300">更新</div>
3331
<ChevronDown class="w-3 h-3 text-primary-600 dark:text-white inline" />
3432
</div>
3533
{/if}

src/routes/+error.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@
2121
{/if}
2222

2323
<div class="flex justify-center mt-6">
24-
<Button href={HOME_PAGE} color="primary" class="px-6">
25-
ホームに戻る
26-
</Button>
24+
<Button href={HOME_PAGE} color="primary" class="px-6">ホームに戻る</Button>
2725
</div>
2826
</div>

src/routes/workbooks/[slug]/+page.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@
7676
};
7777
7878
// HACK:: `updatingModal` is updated, but is not declared with `$state(...)`. Changing its value will not correctly trigger updates.
79-
8079
let updatingModal: UpdatingModal | null = null;
8180
8281
// HACK: clickを1回実行するとactionsが2回実行されてしまう。原因と修正方法が分かっていない。

0 commit comments

Comments
 (0)