chore: log errors

This commit is contained in:
Shivam Mishra
2024-10-08 10:59:42 +05:30
parent 1242cfd704
commit 97699f3087
8 changed files with 12 additions and 12 deletions
@@ -9,14 +9,14 @@ export const actions = {
try {
await conversationLabels.create(label);
} catch (error) {
// Ignore error
console.log(error);
}
},
destroy: async (_, label) => {
try {
await conversationLabels.destroy(label);
} catch (error) {
// Ignore error
console.log(error);
}
},
};