Skip to content

Commit

Permalink
fix(database): remove unused async
Browse files Browse the repository at this point in the history
  • Loading branch information
karlprieb authored and djwhitt committed Jan 29, 2025
1 parent 71d61e4 commit c8490ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/standalone-sqlite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2923,7 +2923,7 @@ export class StandaloneSqliteDatabase
return this.queueWrite('bundles', 'saveDataItem', [item]);
}

async saveBundle(bundle: BundleRecord): Promise<BundleFilterIds> {
saveBundle(bundle: BundleRecord): Promise<BundleFilterIds> {
return this.queueWrite('bundles', 'saveBundle', [bundle]);
}

Expand Down

0 comments on commit c8490ed

Please sign in to comment.