fix: remove double "has" from alert messages

This commit is contained in:
Jeremy Kahn 2022-08-31 10:09:49 -05:00
parent 6bc8bf8b88
commit 2a09eddb7d

View File

@ -68,7 +68,7 @@ export function Room({
useEffect(() => {
peerRoom.onPeerJoin(() => {
shellContext.showAlert(`Someone has has joined the room`, {
shellContext.showAlert(`Someone has joined the room`, {
severity: 'success',
})
@ -78,7 +78,7 @@ export function Room({
})
peerRoom.onPeerLeave(() => {
shellContext.showAlert(`Someone has has left the room`, {
shellContext.showAlert(`Someone has left the room`, {
severity: 'warning',
})