Skip to content

Commit

Permalink
refactor: use block icon instead of disabled visible
Browse files Browse the repository at this point in the history
  • Loading branch information
mariajgrimaldi authored and BryanttV committed Jan 23, 2024
1 parent 4acc84e commit 895b8a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/course-home/outline-tab/SequenceLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { faCheckCircle as farCheckCircle } from '@fortawesome/free-regular-svg-i
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';

import { Icon } from '@edx/paragon';
import { DisabledVisible } from '@edx/paragon/icons';
import { Block } from '@edx/paragon/icons';
import EffortEstimate from '../../shared/effort-estimate';
import { useModel } from '../../generic/model-store';
import messages from './messages';
Expand Down Expand Up @@ -120,7 +120,7 @@ const SequenceLink = ({
{hideFromTOC && (
<div className="row w-100 my-2 mx-4 pl-3">
<span className="small d-flex">
<Icon className="mr-2" src={DisabledVisible} data-testid="hide-from-toc-sequence-link-icon" />
<Icon className="mr-2" src={Block} data-testid="hide-from-toc-sequence-link-icon" />
<span data-testid="hide-from-toc-sequence-link-text">
{intl.formatMessage(messages.hiddenSequenceLink)}
</span>
Expand Down

0 comments on commit 895b8a9

Please sign in to comment.