This commit is contained in:
Nicholas Zuber 2019-05-16 16:50:34 -04:00
parent df16a498e0
commit 3f54b9a7a8
2 changed files with 3 additions and 3 deletions

View File

@ -8,10 +8,10 @@
<link rel="apple-touch-icon" sizes="72x72" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="96x96" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="144x144" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="192x192" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="192x192" href="%PUBLIC_URL%/new-app-icon-rounded.png">
<link rel="apple-touch-icon" sizes="256x256" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="384x384" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="512x512" href="%PUBLIC_URL%/new-app-icon.png">
<link rel="apple-touch-icon" sizes="512x512" href="%PUBLIC_URL%/new-app-icon-rounded.png">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<meta name="theme-color" content="#2f343e">

View File

@ -10,7 +10,7 @@ import {NotificationIconWrapper} from './ui/ui';
export function stringOfError (errorText) {
switch (errorText) {
case 'Unauthorized':
return 'Your credentials have expired.';
return 'Your credentials have expired. You probably need to log out and back in to fix this.';
default:
return errorText || 'Check your internet connection';
}