chore: Use camel case

This commit is contained in:
iamsivin
2024-11-07 10:32:38 +05:30
parent 4b85a9045a
commit 314a33e053
9 changed files with 114 additions and 89 deletions
@@ -11,8 +11,8 @@ const route = useRoute();
const conversations = useMapGetter(
'contactConversations/getAllConversationsByContactId'
);
const contacts = useMapGetter('contacts/getContact');
const stateInbox = useMapGetter('inboxes/getInbox');
const contactsById = useMapGetter('contacts/getContactById');
const stateInbox = useMapGetter('inboxes/getInboxById');
const accountLabels = useMapGetter('labels/getLabels');
const accountLabelsValue = computed(() => accountLabels.value);
@@ -42,7 +42,7 @@ const contactConversations = computed(() =>
v-if="conversation"
:key="conversation.id"
:conversation="conversation"
:contact="contacts(conversation.meta.sender.id)"
:contact="contactsById(conversation.meta.sender.id)"
:state-inbox="stateInbox(conversation.inboxId)"
:account-labels="accountLabelsValue"
/>