Skip to content

Commit

Permalink
Merge branch 'latest' into WSTEAMA-989-upgrade-glob
Browse files Browse the repository at this point in the history
  • Loading branch information
karinathomasbbc authored Feb 23, 2024
2 parents 6f12a79 + 5a619e5 commit 0088ab7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/app/components/Curation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
VISUAL_PROMINENCE,
} from '#app/models/types/curationData';
import RadioSchedule from '#app/legacy/containers/RadioSchedule';
import isLive from '#app/lib/utilities/isLive';
import VisuallyHiddenText from '../VisuallyHiddenText';
import CurationGrid from './CurationGrid';
import HierarchicalGrid from './HierarchicalGrid';
Expand Down Expand Up @@ -91,7 +90,7 @@ const Curation = ({
/>
);
case RADIO_SCHEDULE:
return isLive() ? null : <RadioSchedule initialData={radioSchedule} />;
return <RadioSchedule initialData={radioSchedule} />;
case SIMPLE_CURATION_GRID:
case HIERARCHICAL_CURATION_GRID:
default:
Expand Down

0 comments on commit 0088ab7

Please sign in to comment.