Skip to content

Commit

Permalink
fix: change PermissionDeniedAlert to ConnectionErrorAlert
Browse files Browse the repository at this point in the history
  • Loading branch information
rpenido committed Oct 25, 2023
1 parent 87808bb commit ec2646f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/taxonomy/taxonomy-detail/TaxonomyDetailPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
} from '@edx/paragon';
import { Link, useParams } from 'react-router-dom';

import PermissionDeniedAlert from '../../generic/PermissionDeniedAlert';
import ConnectionErrorAlert from '../../generic/ConnectionErrorAlert';
import Loading from '../../generic/Loading';
import SubHeader from '../../generic/sub-header/SubHeader';
import TaxonomyDetailMenu from './TaxonomyDetailMenu';
Expand All @@ -30,7 +30,7 @@ const TaxonomyDetailPage = () => {

if (isError) {
return (
<PermissionDeniedAlert />
<ConnectionErrorAlert />
);
}

Expand Down

0 comments on commit ec2646f

Please sign in to comment.