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.
This commit is contained in:
James Baird 2020-04-02 15:47:18 +01:00 committed by Дамян Минков
parent b0ab51af90
commit a8252103ea
1 changed files with 1 additions and 1 deletions

View File

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