diff --git a/renderer/src/components/Notification/CustomNofications.js b/renderer/src/components/Notification/CustomNofications.js index 2048ea6ff..a3bffce9b 100644 --- a/renderer/src/components/Notification/CustomNofications.js +++ b/renderer/src/components/Notification/CustomNofications.js @@ -5,7 +5,7 @@ import React, { useContext, useEffect, useState } from 'react'; import localforage from 'localforage'; import moment from 'moment'; import { t } from 'i18next'; -import Notifications from '@/modules/notifications/Notifications'; +import Notifications from './Notifications'; import menuStyles from '../../layouts/editor/MenuBar.module.css'; import { AutographaContext } from '../context/AutographaContext'; diff --git a/renderer/src/modules/notifications/Notifications.js b/renderer/src/components/Notification/Notifications.js similarity index 100% rename from renderer/src/modules/notifications/Notifications.js rename to renderer/src/components/Notification/Notifications.js diff --git a/renderer/src/layouts/projects/TopMenuBar.js b/renderer/src/layouts/projects/TopMenuBar.js index d8e493577..feb4981a0 100644 --- a/renderer/src/layouts/projects/TopMenuBar.js +++ b/renderer/src/layouts/projects/TopMenuBar.js @@ -8,7 +8,7 @@ import { // MenuIcon, // XMarkIcon, // } from '@heroicons/react/24/outline'; -import Notifications from '@/modules/notifications/Notifications'; +import Notifications from '@/components/Notification/Notifications'; import UserProfile from '@/components/Profile/UserProfile'; export default function TopMenuBar() {