Skip to content

Commit fdd73df

Browse files
committed
EPMUII-8814
1 parent 7b4cd24 commit fdd73df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/FileReaders/OpenFromURLComponent.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useState } from 'react';
22
import { UIButton } from '../Button/Button';
3-
import UIModalUrl from '../Modals/ModalUrl';
3+
import ModalUrl from '../Modals/ModalUrl';
44
import MriViwer from '../../engine/lib/MRIViewer';
55

66
export const OpenFromURLComponent = ({ cx }) => {
@@ -22,7 +22,7 @@ export const OpenFromURLComponent = ({ cx }) => {
2222
return (
2323
<>
2424
<UIButton icon="link" text="Open From URL" cx={cx} handler={onModalUrlShow} />
25-
{showModalUrl && <UIModalUrl stateVis={showModalUrl} onHide={onModalUrlHide} loadUrl={onClickLoadUrl} />}
25+
{showModalUrl && <ModalUrl stateVis={showModalUrl} onHide={onModalUrlHide} loadUrl={onClickLoadUrl} />}
2626
</>
2727
);
2828
};

0 commit comments

Comments
 (0)