Skip to content

Commit d05925c

Browse files
linting, fixes
1 parent efaeadb commit d05925c

File tree

5 files changed

+28
-31
lines changed

5 files changed

+28
-31
lines changed

pnpm-lock.yaml

+15-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/lib/i18n/en.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ const translations: Translations = {
171171
sharingProvider: 'Provider',
172172
roundtripStationReturnConstraint: 'The vehicle must be returned to the departure station.',
173173
noItinerariesFound: 'Keine Verbindungen gefunden.',
174-
174+
175175
bookingInfo: 'Booking Information',
176176
changeBookingInfo: 'Change your search options and booking information.',
177177

src/routes/(customer)/routing/+page.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -306,11 +306,11 @@
306306
/>
307307
<Button
308308
variant="ghost"
309-
class="absolute z-10 right-0 top-0"
309+
class="absolute right-0 top-0 z-10"
310310
size="icon"
311311
onclick={() => getLocation()}
312312
>
313-
<LocateFixed class="w-5 h-5" />
313+
<LocateFixed class="h-5 w-5" />
314314
</Button>
315315
<Button
316316
class="absolute right-10 top-6 z-10 rounded-full"

src/routes/+layout.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@
5757
</Alert.Description>
5858
</Alert.Root>
5959
{/if}
60-
<div class="overflow-y-auto grow">
60+
<div class="grow overflow-y-auto">
6161
<div
6262
id="searchmask-container"
63-
class="p-2 pb-6 min-h-full md:flex md:items-center md:justify-center"
63+
class="min-h-full p-2 pb-6 md:flex md:items-center md:justify-center"
6464
>
6565
{@render children()}
6666
</div>

src/routes/taxi/availability/AddVehicle.svelte

+8-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@
2121
Fahrzeug hinzufügen
2222
</Popover.Trigger>
2323
<Popover.Content>
24-
<form method="post" action="?/addVehicle" class="flex flex-col gap-4" use:enhance={() => async ({ update }) => await update({ reset: false })}>
24+
<form
25+
method="post"
26+
action="?/addVehicle"
27+
class="flex flex-col gap-4"
28+
use:enhance={() =>
29+
async ({ update }) =>
30+
await update({ reset: false })}
31+
>
2532
<h2 class="font-medium leading-none">Neues Fahrzeug</h2>
2633

2734
<div class="field">

0 commit comments

Comments
 (0)