From cbe93e6d6d82d64d05dd08ee2fa75b7d64c153f1 Mon Sep 17 00:00:00 2001 From: Evan Rusackas Date: Tue, 22 Mar 2022 14:44:03 -0600 Subject: [PATCH] chore: fixing a pluralization typo (#19295) --- superset-frontend/src/views/CRUD/welcome/Welcome.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx index b0e1931bc4843..5a7df0232c0e1 100644 --- a/superset-frontend/src/views/CRUD/welcome/Welcome.tsx +++ b/superset-frontend/src/views/CRUD/welcome/Welcome.tsx @@ -218,7 +218,7 @@ function Welcome({ user, addDangerToast }: WelcomeProps) { setDashboardData([]); setLoadedCount(loadedCount => loadedCount + 1); addDangerToast( - t('There was an issues fetching your dashboards: %s', err), + t('There was an issue fetching your dashboards: %s', err), ); }); getUserOwnedObjects(id, 'chart') @@ -229,7 +229,7 @@ function Welcome({ user, addDangerToast }: WelcomeProps) { .catch((err: unknown) => { setChartData([]); setLoadedCount(loadedCount => loadedCount + 1); - addDangerToast(t('There was an issues fetching your chart: %s', err)); + addDangerToast(t('There was an issue fetching your chart: %s', err)); }); getUserOwnedObjects(id, 'saved_query', ownSavedQueryFilters) .then(r => {