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, }, }) - } + }, }