chore: Audit message characters across all channels (#11343)

- Audited message characters across all channels.
- Replaced `isAInstagramChannel` with `isAnInstagramChannel`
This commit is contained in:
Muhsin Keloth
2025-04-21 14:46:51 +05:30
committed by GitHub
parent 1531772365
commit 0a394e16ca
8 changed files with 42 additions and 18 deletions

View File

@@ -249,7 +249,7 @@ export default {
return this.$t('CONVERSATION.CANNOT_REPLY');
},
replyWindowLink() {
if (this.isAFacebookInbox || this.isAInstagramChannel) {
if (this.isAFacebookInbox || this.isAnInstagramChannel) {
return REPLY_POLICY.FACEBOOK;
}
if (this.isAWhatsAppCloudChannel) {
@@ -264,7 +264,7 @@ export default {
if (
this.isAWhatsAppChannel ||
this.isAFacebookInbox ||
this.isAInstagramChannel
this.isAnInstagramChannel
) {
return this.$t('CONVERSATION.24_HOURS_WINDOW');
}