chore: Fix eslint

This commit is contained in:
iamsivin
2024-12-10 22:34:31 +05:30
parent 723f01fc50
commit f54f7c8907
@@ -43,13 +43,6 @@ const isSnoozed = computed(
() => currentChat.value.status === wootConstants.STATUS_TYPE.SNOOZED
);
const buttonClass = computed(() => {
if (isPending.value) return 'primary';
if (isOpen.value) return 'success';
if (isResolved.value) return 'warning';
return '';
});
const showAdditionalActions = computed(
() => !isPending.value && !isSnoozed.value
);