Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-jeremy authored Mar 1, 2025
1 parent 92f137f commit bc95f9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/loot-core/src/server/schedules/find-schedules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export async function findSchedules() {
for (const account of accounts) {
// Find latest transaction-ish to start with
const latestTrans = await db.first<Pick<db.DbViewTransaction, 'date'>>(
'SELECT data FROM v_transactions WHERE account = ? AND parent_id IS NULL ORDER BY date DESC LIMIT 1',
'SELECT date FROM v_transactions WHERE account = ? AND parent_id IS NULL ORDER BY date DESC LIMIT 1',
[account.id],
);

Expand Down

0 comments on commit bc95f9c

Please sign in to comment.