Clean code

This commit is contained in:
Adria Navarro 2024-12-19 17:15:28 +01:00
parent ffab29cdee
commit 2ca4dec700
1 changed files with 0 additions and 3 deletions

View File

@ -141,9 +141,6 @@ export class TableStore extends DerivedBudiStore<
}
async delete(table: { _id: string; _rev: string }) {
if (!table?._id) {
return
}
await API.deleteTable(table._id, table._rev)
this.replaceTable(table._id, null)
}