fix: 🐛 gulp error so that error in sending data does not affect the action triggering it

This commit is contained in:
AkashRajpurohit 2023-09-17 19:34:35 +05:30
parent c7275ef85b
commit e73865b880

View File

@ -187,7 +187,8 @@
headers, headers,
}) })
.then(res => res.text()) .then(res => res.text())
.then(text => (cache = text)); .then(text => (cache = text))
.catch(() => {}); // no-op, gulp error
}; };
const track = (obj, data) => { const track = (obj, data) => {