From 6e7a55464fbb8bc5a3580c6174378c1e66087658 Mon Sep 17 00:00:00 2001 From: Herman Steuernagel Date: Thu, 12 Dec 2024 09:36:29 -0800 Subject: [PATCH] fix wording --- public/js/src/admin.js | 2 +- public/js/src/user.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/src/admin.js b/public/js/src/admin.js index 53c29633..19042c8e 100755 --- a/public/js/src/admin.js +++ b/public/js/src/admin.js @@ -88,5 +88,5 @@ apolloClient.query({ query: MeQuery }) .catch(() => { // fix for Brave browser - it doesn't send the cookie with the first JS request on the initial load // after the page is refreshed, it's fine - alert('There was an error loading the page. The page not work as expected. Please refresh the page.'); + alert('There was an error loading the page. The page is not working as expected. Please refresh the page.'); }); diff --git a/public/js/src/user.js b/public/js/src/user.js index 75ec74fc..61db4984 100755 --- a/public/js/src/user.js +++ b/public/js/src/user.js @@ -83,6 +83,6 @@ apolloClient.query({ query: MeQuery }) app.mount('#app'); }) .catch(() => { - alert('There was an error loading the page. The page not work as expected. Please refresh the page.'); + alert('There was an error loading the page. The page is not working as expected. Please refresh the page.'); });