From ca43baa7c7fbf1df2e66fbe97b6a6f1b8cd22eec Mon Sep 17 00:00:00 2001 From: nico Date: Fri, 13 Feb 2026 15:51:18 +0800 Subject: [PATCH] fix: rename component files to exclude from route tree generation Co-authored-by: Qwen-Coder --- .../pengaturan/{akses-dan-tim.tsx => -akses-dan-tim.tsx} | 0 src/routes/dashboard/pengaturan/{keamanan.tsx => -keamanan.tsx} | 0 .../dashboard/pengaturan/{notifikasi.tsx => -notifikasi.tsx} | 0 src/routes/dashboard/pengaturan/{umum.tsx => -umum.tsx} | 0 src/routes/dashboard/pengaturan/akses-dan-tim.route.tsx | 2 +- src/routes/dashboard/pengaturan/keamanan.route.tsx | 2 +- src/routes/dashboard/pengaturan/notifikasi.route.tsx | 2 +- src/routes/dashboard/pengaturan/umum.route.tsx | 2 +- 8 files changed, 4 insertions(+), 4 deletions(-) rename src/routes/dashboard/pengaturan/{akses-dan-tim.tsx => -akses-dan-tim.tsx} (100%) rename src/routes/dashboard/pengaturan/{keamanan.tsx => -keamanan.tsx} (100%) rename src/routes/dashboard/pengaturan/{notifikasi.tsx => -notifikasi.tsx} (100%) rename src/routes/dashboard/pengaturan/{umum.tsx => -umum.tsx} (100%) 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,