Feature/v2/smartfolders rebuild (#6480)

Co-authored-by: aikido-pr-checks[bot] <169896070+aikido-pr-checks[bot]@users.noreply.github.com>
This commit is contained in:
Reece Browne
2026-06-10 11:18:14 +01:00
committed by GitHub
co-authored by aikido-pr-checks[bot] <169896070+aikido-pr-checks[bot]@users.noreply.github.com>
parent e0fc5061de
commit e2536daeb8
49 changed files with 9166 additions and 103 deletions
+3
View File
@@ -14,6 +14,8 @@ import ShareLinkPage from "@app/routes/ShareLinkPage";
import ParticipantView from "@app/components/workflow/ParticipantView";
import MobileScannerPage from "@app/pages/MobileScannerPage";
import Onboarding from "@app/components/onboarding/Onboarding";
import WatchedFoldersRegistration from "@app/components/watchedFolders/WatchedFoldersRegistration";
import { WATCHED_FOLDERS_ENABLED } from "@app/constants/featureFlags";
// Import global styles
import "@app/styles/tailwind.css";
@@ -80,6 +82,7 @@ export default function App() {
<Route path="/*" element={<Landing />} />
</Routes>
<Onboarding />
{WATCHED_FOLDERS_ENABLED && <WatchedFoldersRegistration />}
</AppLayout>
</AppProviders>
}