|
|
@@ -7,10 +7,10 @@ import styles from './EditorNavbarBottom.module.scss';
|
|
|
|
|
|
const moduleClass = styles['grw-editor-navbar-bottom'];
|
|
|
|
|
|
-const SavePageControls = dynamic(() => import('~/client/components/SavePageControls').then(mod => mod.SavePageControls), { ssr: false });
|
|
|
-const OptionsSelector = dynamic(() => import('~/client/components/PageEditor/OptionsSelector').then(mod => mod.OptionsSelector), { ssr: false });
|
|
|
+const SavePageControls = dynamic(() => import('./SavePageControls').then(mod => mod.SavePageControls), { ssr: false });
|
|
|
+const OptionsSelector = dynamic(() => import('./OptionsSelector').then(mod => mod.OptionsSelector), { ssr: false });
|
|
|
|
|
|
-const EditorNavbarBottom = (): JSX.Element => {
|
|
|
+export const EditorNavbarBottom = (): JSX.Element => {
|
|
|
|
|
|
const { t } = useTranslation();
|
|
|
const { mutate: mutateDrawerOpened } = useDrawerOpened();
|
|
|
@@ -44,5 +44,3 @@ const EditorNavbarBottom = (): JSX.Element => {
|
|
|
</div>
|
|
|
);
|
|
|
};
|
|
|
-
|
|
|
-export default EditorNavbarBottom;
|