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
@@ -77,7 +77,7 @@ export const getters = {
},
getAllConversationsByContactId: $state => id => {
const records = $state.records[Number(id)] || [];
return camelcaseKeys(records);
return camelcaseKeys(records, { deep: true });
},
};