Reformat
This commit is contained in:
parent
c51ad6a41e
commit
0c65254f4a
|
@ -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,
|
||||
},
|
||||
})
|
||||
}
|
||||
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,
|
||||
},
|
||||
})
|
||||
}
|
||||
|
|
|
@ -48,5 +48,5 @@ export const actions = {
|
|||
notificationsEnabled,
|
||||
},
|
||||
})
|
||||
}
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue