Skip to content

Commit 8ac5c84

Browse files
committed
Fix remaining svelte/no-useless-mustaches errors
The two remaining svelte/no-useless-mustaches errors were auto-fixed by the eslint rule.
1 parent 4fd8a8b commit 8ac5c84

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/routes/(authenticated)/project/create/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@
238238
<ProjectTypeSelect bind:value={$form.type} error={$errors.type} />
239239

240240
<Select id="org" label={$t('project.create.org')} bind:value={$form.orgId} error={$errors.orgId}>
241-
<option value={''}>{$t('project_page.organization.placeholder')}</option>
241+
<option value="">{$t('project_page.organization.placeholder')}</option>
242242
{#each myOrgs as org}
243243
<option value={org.id}>{org.name}</option>
244244
{/each}

frontend/src/routes/(unauthenticated)/register/+page.svelte

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

1414
<TitlePage title={$t('register.title')}>
1515
<div class="flex flex-col pb-2">
16-
<RegisterWithGoogleButton href={`/api/login/google`}/>
16+
<RegisterWithGoogleButton href="/api/login/google"/>
1717
</div>
1818
<div class="divider lowercase">{$t('common.or')}</div>
1919
<CreateUser handleSubmit={register} onSubmitted={onSubmit} />

0 commit comments

Comments
 (0)