[mob] Fix bug during logout

This commit is contained in:
Neeraj Gupta 2024-05-21 16:58:54 +05:30
parent 9b0e8b265d
commit dfbdc94e61

View file

@ -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 {