Remove unnecessary null check
This commit is contained in:
parent
079aa76978
commit
ffab29cdee
|
@ -144,7 +144,7 @@ export class TableStore extends DerivedBudiStore<
|
||||||
if (!table?._id) {
|
if (!table?._id) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
await API.deleteTable(table._id, table._rev || "rev")
|
await API.deleteTable(table._id, table._rev)
|
||||||
this.replaceTable(table._id, null)
|
this.replaceTable(table._id, null)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue