From 01ee5ab926f7563b848871217df6423d293fd9ca Mon Sep 17 00:00:00 2001 From: James Turner Date: Wed, 13 Mar 2019 19:57:33 +0000 Subject: [PATCH] Fixed typo on notifications state (#2047) --- app/javascript/chat/chat.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/javascript/chat/chat.jsx b/app/javascript/chat/chat.jsx index d4a857b57..c5f0ac428 100644 --- a/app/javascript/chat/chat.jsx +++ b/app/javascript/chat/chat.jsx @@ -733,13 +733,13 @@ export default class Chat extends Component { } else if (notificationsPermission === 'granted') { notificationsState = (
- Notificatins On + Notifications On
); } else if (notificationsPermission === 'denied') { notificationsState = (
- Notificatins Off + Notifications Off
); }