Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions PanTS-Demo/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions PanTS-Demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"@tabler/icons-react": "^3.34.1",
"@tailwindcss/vite": "^4.1.12",
"esbuild": "^0.25.9",
"framer-motion": "^12.42.2",
"jszip": "^3.10.1",
"pako": "^3.0.1",
"pdfjs-dist": "^6.2.108",
Expand Down
4 changes: 3 additions & 1 deletion PanTS-Demo/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const AnalyticsSettings = lazy(() => import("./routes/Settings/AnalyticsSettings
const PeopleSettings = lazy(() => import("./routes/Settings/PeopleSettings"));
const SignupRedirect = lazy(() => import("./routes/SignupRedirect"));
const LegalPage = lazy(() => import("./routes/LegalPage"));
const SharePatientCard = lazy(() => import("./routes/SharePatientCard"));
const RotatingHeartLoader = lazy(() => import("./components/Loading"));

const BASENAME = import.meta.env.VITE_BASENAME;
Expand Down Expand Up @@ -97,6 +98,7 @@ function App() {
/>
<Route path="/dashboard" element={<Homepage />} />
<Route path="/case/:caseId" element={<VisualizationPage />} />
<Route path="/share/:shareId" element={<SharePatientCard />} />
<Route
path="/session/:sessionId"
element={<VisualizationPage />}
Expand Down Expand Up @@ -152,4 +154,4 @@ function App() {
);
}

export default App;
export default App;
Loading
Loading