Skip to content

Commit

Permalink
[mob] Fix bug during logout (#1800)
Browse files Browse the repository at this point in the history
## Description

## Tests
Tested locally
  • Loading branch information
ua741 authored May 21, 2024
2 parents 9b0e8b2 + dfbdc94 commit 44e5af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/db/embeddings_db.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class EmbeddingsDB {

Future<void> clearTable() async {
final db = await _database;
await db.execute('DELETE * FROM $tableName');
await db.execute('DELETE FROM $tableName');
}

Future<List<Embedding>> getAll(Model model) async {
Expand Down

0 comments on commit 44e5af0

Please sign in to comment.