Skip to content

Commit 86d0a7e

Browse files
fix: remove icon and empty breadcrumb from libraries (#2129) (#2133)
1 parent 1968d14 commit 86d0a7e

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/library-authoring/LibraryAuthoringPage.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@ import {
1515
Breadcrumb,
1616
Button,
1717
Container,
18-
Icon,
1918
Stack,
2019
Tab,
2120
Tabs,
2221
} from '@openedx/paragon';
23-
import { Add, ArrowBack, InfoOutline } from '@openedx/paragon/icons';
22+
import { Add, InfoOutline } from '@openedx/paragon/icons';
2423
import { Link } from 'react-router-dom';
2524

2625
import Loading from '../generic/Loading';
@@ -214,16 +213,11 @@ const LibraryAuthoringPage = ({
214213
const breadcumbs = componentPickerMode && !restrictToLibrary ? (
215214
<Breadcrumb
216215
links={[
217-
{
218-
label: '',
219-
to: '',
220-
},
221216
{
222217
label: intl.formatMessage(messages.returnToLibrarySelection),
223218
onClick: returnToLibrarySelection,
224219
},
225220
]}
226-
spacer={<Icon src={ArrowBack} size="sm" />}
227221
linkAs={Link}
228222
/>
229223
) : undefined;

0 commit comments

Comments
 (0)