code refactoring

This commit is contained in:
Peter Maquiran
2024-08-18 13:27:57 +01:00
parent 650c772084
commit ef12ff439d
50 changed files with 729 additions and 735 deletions
@@ -112,7 +112,6 @@ export class DexieRepository<T> {
async findAll(): Promise<RepositoryResult<T[], T>> {
try {
console.log(this.table)
const documents = await this.table.toArray()
return ok(documents);
} catch (error) {