Skip to content

Commit

Permalink
chore: fixing a pluralization typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas committed Mar 21, 2022
1 parent f9feb1b commit b8440be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/src/views/CRUD/welcome/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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 => {
Expand Down

0 comments on commit b8440be

Please sign in to comment.