From 0a9a2a099446adf8b93667b4f608b2d8ff3a0f8d Mon Sep 17 00:00:00 2001 From: Roland Osborne Date: Mon, 15 Aug 2022 11:59:02 -0700 Subject: [PATCH] prevent awkward zoom in mobile text input --- net/web/public/index.html | 2 +- net/web/src/session/channels/useChannels.hook.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net/web/public/index.html b/net/web/public/index.html index 47f4129c..7ef9d664 100644 --- a/net/web/public/index.html +++ b/net/web/public/index.html @@ -3,7 +3,7 @@ - + { let contacts = []; - if (chan.guid != null && profile.state.profile.guid != chan.guid) { + if (chan.guid != null && profile.state.profile.guid !== chan.guid) { contacts.push(card.actions.getCardByGuid(chan.guid)); } for (let guid of chan.data.channelDetail?.members) { - if (guid != profile.state.profile.guid) { + if (guid !== profile.state.profile.guid) { contacts.push(card.actions.getCardByGuid(guid)); } }