Skip to content

Commit

Permalink
Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AkihiroKusuda committed Jan 31, 2024
1 parent a8e7daa commit 314fd5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/persistence/sqlite.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function getItems() {
acc(
rows.map(item =>
Object.assign({}, item, {
completed: item.complaeted === 1,
completed: item.completed === 1,
}),
),
);
Expand Down

0 comments on commit 314fd5e

Please sign in to comment.