Skip to content

Commit 83bd289

Browse files
committed
✏️ Remove {} (#2197)
1 parent 9605f56 commit 83bd289

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/lib/components/GradeLabel.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
{#if taskGrade !== TaskGrade.PENDING}
4747
{grade}
4848
{:else}
49-
{''}
49+
5050
{/if}
5151
</div>
5252
</div>

src/lib/components/SubmissionStatus/IconForUpdating.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
{#if isLoggedIn}
1414
<div class="flex items-center justify-center text-sm space-x-1">
1515
<div class="dark:text-gray-300">
16-
{'更新'}
16+
更新
1717
</div>
1818

1919
<div class="text-primary-600 dark:text-gray-300 inline">

src/lib/components/SubmissionStatus/SubmissionStatusImage.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
{#if isLoggedIn}
2929
<div class="flex flex-col items-center ml-2 md:ml-4 text-xs">
3030
<div class="pb-1 dark:text-gray-300">
31-
{'更新'}
31+
更新
3232
</div>
3333
<ChevronDown class="w-3 h-3 text-primary-600 dark:text-white inline" />
3434
</div>

src/routes/+error.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<div class="flex justify-center mt-6">
2424
<Button href={HOME_PAGE} color="primary" class="px-6">
25-
{'ホームに戻る'}
25+
ホームに戻る
2626
</Button>
2727
</div>
2828
</div>

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

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

223223
<UpdatingModal bind:this={updatingModal} {isLoggedIn} />
224224
{:else}
225-
{'問題を1問以上登録してください。'}
225+
問題を1問以上登録してください。
226226
{/if}
227227
</div>

src/routes/workbooks/create/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<WorkBookForm
3030
pageTitle="問題集を作成"
31-
breadcrumbTitle={'問題集を作成'}
31+
breadcrumbTitle="問題集を作成"
3232
isAdmin={data.isAdmin}
3333
{superFormObject}
3434
{tasksMapByIds}

0 commit comments

Comments
 (0)