chore: Refactor widget (#5621)

This commit is contained in:
David Kubeš
2022-10-14 09:13:11 +05:30
committed by GitHub
parent e310230f62
commit a6960dc2d3
18 changed files with 31 additions and 55 deletions
@@ -9,14 +9,14 @@ export const actions = {
try {
await conversationLabels.create(label);
} catch (error) {
// Ingore error
// Ignore error
}
},
destroy: async (_, label) => {
try {
await conversationLabels.destroy(label);
} catch (error) {
// Ingore error
// Ignore error
}
},
};