Ver código fonte

Fix grammar on unsupported browser message

It should read "Chrome or Firefox" not "Chrome and Firefox", as you only need to use a single browser, not both.
j8
James Baird 5 anos atrás
pai
commit
a8252103ea

+ 1
- 1
react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js Ver arquivo

@@ -50,7 +50,7 @@ class UnsupportedDesktopBrowser extends Component<Props> {
50 50
                         className = { `${_SNS}__link` }
51 51
                         href = { CHROME } >Chrome</a>&nbsp;
52 52
                     {
53
-                        this._showFirefox() && <>and <a
53
+                        this._showFirefox() && <>or <a
54 54
                             className = { `${_SNS}__link` }
55 55
                             href = { FIREFOX }>Firefox</a></>
56 56
                     }

Carregando…
Cancelar
Salvar