Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
shaankhosla committed Sep 23, 2023
1 parent 80c36bd commit 95c84e1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/loot-core/src/server/schedules/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,9 @@ async function checkIfScheduleExists(name, scheduleId) {

async function nameFromScheduleId(scheduleId) {
console.log(scheduleId);
let idForName = await db.first(
'SELECT name from schedules WHERE id = ?',
[scheduleId],
);
let idForName = await db.first('SELECT name from schedules WHERE id = ?', [
scheduleId,
]);
return idForName['name'];
}

Expand Down

0 comments on commit 95c84e1

Please sign in to comment.