style: fix svelte/no-useless-mustaches — unwrap string literals from mustache expressions

This commit is contained in:
2026-06-25 14:31:49 +01:00
parent 766b5b7dbd
commit 0dff41a4ee
5 changed files with 7 additions and 493 deletions
@@ -336,7 +336,7 @@
{settings.website_url}
</a>
{:else}
{'\u2014'}
{/if}
</p>
</div>
@@ -877,10 +877,10 @@
minute: '2-digit',
hour12: true
})}}
{' · '}
·
{formatDuration(booking.duration_minutes)}
{#if booking.services?.length}
{' · '}
·
{booking.services.join(', ')}
{/if}
</div>
@@ -96,8 +96,8 @@
</div>
<div class="mt-1 text-sm text-emerald-700">
{selectedDate} at {selectedTime}
{' — '}
{endTime}
{' ('}{duration} min)
({duration} min)
</div>
</div>
@@ -1034,9 +1034,9 @@
minute: '2-digit',
hour12: true
})}
{' · '}{formatDuration(booking.duration_minutes)}
· {formatDuration(booking.duration_minutes)}
{#if booking.services?.length}
{' · '}{booking.services.join(', ')}{/if}
· {booking.services.join(', ')}{/if}
</div>
</div>
<div class="mt-1.5 flex gap-2">