summaryrefslogtreecommitdiffhomepage
path: root/frontend/src/App/Notification.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/App/Notification.tsx')
-rw-r--r--frontend/src/App/Notification.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/src/App/Notification.tsx b/frontend/src/App/Notification.tsx
index 73323baa8..16d167fd7 100644
--- a/frontend/src/App/Notification.tsx
+++ b/frontend/src/App/Notification.tsx
@@ -10,6 +10,7 @@ import {
FontAwesomeIcon,
FontAwesomeIconProps,
} from "@fortawesome/react-fontawesome";
+import { useReduxStore } from "@redux/hooks/base";
import React, {
FunctionComponent,
useCallback,
@@ -26,8 +27,7 @@ import {
Tooltip,
} from "react-bootstrap";
import { useDidUpdate, useTimeoutWhen } from "rooks";
-import { useReduxStore } from "../@redux/hooks/base";
-import { BuildKey, useIsArrayExtended } from "../utilities";
+import { BuildKey, useIsArrayExtended } from "utilities";
import "./notification.scss";
enum State {
@@ -63,7 +63,7 @@ function useHasErrorNotification(notifications: Server.Notification[]) {
}
const NotificationCenter: FunctionComponent = () => {
- const { progress, notifications, notifier } = useReduxStore((s) => s.site);
+ const { progress, notifications, notifier } = useReduxStore((s) => s);
const dropdownRef = useRef<HTMLDivElement>(null);
const [hasNew, setHasNew] = useState(false);