From 1ce922ff4c61dba0faebc728a75b7f79f9ca76da Mon Sep 17 00:00:00 2001 From: vinix Date: Thu, 18 Dec 2025 12:36:46 +0700 Subject: [PATCH] minor fix notif --- src/App.jsx | 4 ++-- src/pages/notification/component/ListNotification.jsx | 2 +- .../IndexNotificationDetail.jsx} | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) rename src/pages/{detailNotification/IndexDetailNotification.jsx => notificationDetail/IndexNotificationDetail.jsx} (99%) diff --git a/src/App.jsx b/src/App.jsx index b976b45..ea24775 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -36,7 +36,7 @@ import IndexNotification from './pages/notification/IndexNotification'; import IndexRole from './pages/role/IndexRole'; import IndexUser from './pages/user/IndexUser'; import IndexContact from './pages/contact/IndexContact'; -import DetailNotificationTab from './pages/detailNotification/IndexDetailNotification'; +import DetailNotificationTab from './pages/notificationDetail/IndexNotificationDetail'; import IndexVerificationSparepart from './pages/verificationSparepart/IndexVerificationSparepart'; import SvgTest from './pages/home/SvgTest'; @@ -64,7 +64,7 @@ const App = () => { } /> } /> } /> { } }; -const DetailNotificationTab = () => { +const NotificationDetailTab = () => { const { notificationId } = useParams(); // Mungkin perlu disesuaikan jika route berbeda const navigate = useNavigate(); const [notification, setNotification] = useState(null); @@ -408,4 +408,4 @@ const DetailNotificationTab = () => { ); }; -export default DetailNotificationTab; \ No newline at end of file +export default NotificationDetailTab; \ No newline at end of file