Browse Source

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.
master
James Baird 5 years ago
parent
commit
a8252103ea

+ 1
- 1
react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js View File

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

Loading…
Cancel
Save