From 0c65254f4a0a45aa0115d34371783d3d0ac48eb8 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 18 May 2024 16:32:32 +0200 Subject: [PATCH] Reformat --- src/lib/server/timer.ts | 32 +++++++++++++++++++------------- src/routes/timer/+page.server.ts | 2 +- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/src/lib/server/timer.ts b/src/lib/server/timer.ts index 5007dd3..3903819 100644 --- a/src/lib/server/timer.ts +++ b/src/lib/server/timer.ts @@ -1,13 +1,19 @@ - -export const updateTimer = async ({ user, breakInterval, miniBreakDuration, longBreakDuration, soundEnabled, notificationsEnabled }) => { - await db.timer.update({ - where: { user_id: user.id }, - data: { - breakInterval, - miniBreakDuration, - longBreakDuration, - soundEnabled, - notificationsEnabled, - }, - }) -} \ No newline at end of file +export const updateTimer = async ({ + user, + breakInterval, + miniBreakDuration, + longBreakDuration, + soundEnabled, + notificationsEnabled, +}) => { + await db.timer.update({ + where: { user_id: user.id }, + data: { + breakInterval, + miniBreakDuration, + longBreakDuration, + soundEnabled, + notificationsEnabled, + }, + }) +} diff --git a/src/routes/timer/+page.server.ts b/src/routes/timer/+page.server.ts index f7ed0db..8007cec 100644 --- a/src/routes/timer/+page.server.ts +++ b/src/routes/timer/+page.server.ts @@ -48,5 +48,5 @@ export const actions = { notificationsEnabled, }, }) - } + }, }