chore: fixing a pluralization typo (#19295)

This commit is contained in:
Evan Rusackas 2022-03-22 14:44:03 -06:00 committed by GitHub
parent d10a3d8bba
commit e45235e482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 => {