diff --git a/src/routes/dashboard/pengaturan/akses-dan-tim.tsx b/src/routes/dashboard/pengaturan/-akses-dan-tim.tsx similarity index 100% rename from src/routes/dashboard/pengaturan/akses-dan-tim.tsx rename to src/routes/dashboard/pengaturan/-akses-dan-tim.tsx diff --git a/src/routes/dashboard/pengaturan/keamanan.tsx b/src/routes/dashboard/pengaturan/-keamanan.tsx similarity index 100% rename from src/routes/dashboard/pengaturan/keamanan.tsx rename to src/routes/dashboard/pengaturan/-keamanan.tsx diff --git a/src/routes/dashboard/pengaturan/notifikasi.tsx b/src/routes/dashboard/pengaturan/-notifikasi.tsx similarity index 100% rename from src/routes/dashboard/pengaturan/notifikasi.tsx rename to src/routes/dashboard/pengaturan/-notifikasi.tsx diff --git a/src/routes/dashboard/pengaturan/umum.tsx b/src/routes/dashboard/pengaturan/-umum.tsx similarity index 100% rename from src/routes/dashboard/pengaturan/umum.tsx rename to src/routes/dashboard/pengaturan/-umum.tsx diff --git a/src/routes/dashboard/pengaturan/akses-dan-tim.route.tsx b/src/routes/dashboard/pengaturan/akses-dan-tim.route.tsx index 62f6d43..d08d750 100644 --- a/src/routes/dashboard/pengaturan/akses-dan-tim.route.tsx +++ b/src/routes/dashboard/pengaturan/akses-dan-tim.route.tsx @@ -1,5 +1,5 @@ import { createFileRoute } from '@tanstack/react-router'; -import AksesDanTimSettings from './akses-dan-tim'; +import AksesDanTimSettings from './-akses-dan-tim'; export const Route = createFileRoute('/dashboard/pengaturan/akses-dan-tim')({ component: AksesDanTimSettings, diff --git a/src/routes/dashboard/pengaturan/keamanan.route.tsx b/src/routes/dashboard/pengaturan/keamanan.route.tsx index e1e85e8..287ab6b 100644 --- a/src/routes/dashboard/pengaturan/keamanan.route.tsx +++ b/src/routes/dashboard/pengaturan/keamanan.route.tsx @@ -1,5 +1,5 @@ import { createFileRoute } from '@tanstack/react-router'; -import KeamananSettings from './keamanan'; +import KeamananSettings from './-keamanan'; export const Route = createFileRoute('/dashboard/pengaturan/keamanan')({ component: KeamananSettings, diff --git a/src/routes/dashboard/pengaturan/notifikasi.route.tsx b/src/routes/dashboard/pengaturan/notifikasi.route.tsx index 32242a9..59e02eb 100644 --- a/src/routes/dashboard/pengaturan/notifikasi.route.tsx +++ b/src/routes/dashboard/pengaturan/notifikasi.route.tsx @@ -1,5 +1,5 @@ import { createFileRoute } from '@tanstack/react-router'; -import NotifikasiSettings from './notifikasi'; +import NotifikasiSettings from './-notifikasi'; export const Route = createFileRoute('/dashboard/pengaturan/notifikasi')({ component: NotifikasiSettings, diff --git a/src/routes/dashboard/pengaturan/umum.route.tsx b/src/routes/dashboard/pengaturan/umum.route.tsx index 99a91c0..38394d8 100644 --- a/src/routes/dashboard/pengaturan/umum.route.tsx +++ b/src/routes/dashboard/pengaturan/umum.route.tsx @@ -1,5 +1,5 @@ import { createFileRoute } from '@tanstack/react-router'; -import UmumSettings from './umum'; +import UmumSettings from './-umum'; export const Route = createFileRoute('/dashboard/pengaturan/umum')({ component: UmumSettings,