diff --git a/superset-frontend/src/components/Tags/utils.tsx b/superset-frontend/src/components/Tags/utils.tsx index 690a9b44066d0..48bd979046d5b 100644 --- a/superset-frontend/src/components/Tags/utils.tsx +++ b/superset-frontend/src/components/Tags/utils.tsx @@ -66,7 +66,7 @@ export const loadTags = async ( const getErrorMessage = ({ error, message }: ClientErrorObject) => { let errorText = message || error || t('An error has occurred'); if (message === 'Forbidden') { - errorText = t('You do not have permission to edit this dashboard'); + errorText = t('You do not have permission to read tags'); } return errorText; };