Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
nilspenzel committed Nov 15, 2024
1 parent 2c47f66 commit b20937b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export default defineConfig({
locale: 'de-DE',
timezoneId: 'Europe/Berlin',
launchOptions: {
slowMo: 0,
},
slowMo: 0
}
},
testDir: './tests',
projects: [
Expand Down
2 changes: 1 addition & 1 deletion src/routes/api/booking/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { db } from '$lib/database';
import { Interval } from '$lib/interval.js';
import { groupBy, updateValues } from '$lib/collection_utils.js';
import { error, json, type RequestEvent } from '@sveltejs/kit';
import { hoursToMs, minutesToMs, secondsToMs } from '$lib/time_utils.js';
import { hoursToMs, minutesToMs } from '$lib/time_utils.js';
import { MAX_TRAVEL_MS, MIN_PREP_MINUTES } from '$lib/constants.js';
import { sql } from 'kysely';
import { covers } from '$lib/sqlHelpers.js';
Expand Down

0 comments on commit b20937b

Please sign in to comment.