Skip to content

Commit b6cf913

Browse files
committed
client/modules/IDE/components/IDEOverlays: update to remove extraneous prop from Overlay component
1 parent ea9dd1e commit b6cf913

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

client/modules/IDE/components/IDEOverlays.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,7 @@ export default function IDEOverlays() {
3333
preferencesIsVisible,
3434
keyboardShortcutVisible,
3535
shareModalVisible,
36-
errorType,
37-
previousPath
36+
errorType
3837
} = useSelector((state) => state.ide);
3938

4039
return (
@@ -51,7 +50,6 @@ export default function IDEOverlays() {
5150
{location.pathname === '/feedback' && (
5251
<Overlay
5352
title={t('IDEView.SubmitFeedback')}
54-
previousPath={previousPath}
5553
ariaLabel={t('IDEView.SubmitFeedbackARIA')}
5654
>
5755
<Feedback />
@@ -61,7 +59,6 @@ export default function IDEOverlays() {
6159
<Overlay
6260
ariaLabel={t('IDEView.AddCollectionARIA')}
6361
title={t('IDEView.AddCollectionTitle')}
64-
previousPath={previousPath}
6562
actions={<CollectionSearchbar />}
6663
isFixedHeight
6764
>

0 commit comments

Comments
 (0)