Remove unnecessary null check

This commit is contained in:
Adria Navarro 2024-12-19 17:11:50 +01:00
parent 079aa76978
commit ffab29cdee
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ export class TableStore extends DerivedBudiStore<
if (!table?._id) {
return
}
await API.deleteTable(table._id, table._rev || "rev")
await API.deleteTable(table._id, table._rev)
this.replaceTable(table._id, null)
}