Fixed typo on notifications state (#2047)

This commit is contained in:
James Turner 2019-03-13 19:57:33 +00:00 committed by Mac Siri
parent 6a9b97b30d
commit 01ee5ab926

View file

@ -733,13 +733,13 @@ export default class Chat extends Component {
} else if (notificationsPermission === 'granted') {
notificationsState = (
<div className="chat_chatconfig chat_chatconfig--on">
Notificatins On
Notifications On
</div>
);
} else if (notificationsPermission === 'denied') {
notificationsState = (
<div className="chat_chatconfig chat_chatconfig--off">
Notificatins Off
Notifications Off
</div>
);
}