🐛 Fixed error on Download feed

This commit is contained in:
Liyas Thomas
2020-01-22 12:47:09 +05:30
parent ea7feee840
commit 860993663f
3 changed files with 11 additions and 11 deletions

View File

@@ -40,11 +40,12 @@ export const fb = {
return console.error("error inserting", dt, e);
}
},
deleteFeed: id =>
deleteFeed: id => {
feedsCollection
.doc(id)
.delete()
.catch(e => console.error("error deleting", dt, e)),
.catch(e => console.error("error deleting", dt, e));
},
writeSettings: async (setting, value) => {
const st = {
updatedOn: new Date(),