update routes and package version

This commit is contained in:
Nate Kelley 2025-03-10 08:53:44 -06:00
parent a67e9e1048
commit e5dd6e3416
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
3 changed files with 8 additions and 8 deletions

8
web/package-lock.json generated
View File

@ -75,7 +75,7 @@
"ts-jest": "^29.2.6",
"use-context-selector": "^2.0.0",
"utility-types": "^3.11.0",
"virtua": "^0.40.1"
"virtua": "^0.40.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.5",
@ -21026,9 +21026,9 @@
}
},
"node_modules/virtua": {
"version": "0.40.1",
"resolved": "https://registry.npmjs.org/virtua/-/virtua-0.40.1.tgz",
"integrity": "sha512-xZcbBduTv7ajBqCQFkInRdcAU1TK/Os9ljHpMUcAOVVGY1aezJSW9PXr92+TwBfFm+DTvxV1CXcViWzl7UXaNA==",
"version": "0.40.3",
"resolved": "https://registry.npmjs.org/virtua/-/virtua-0.40.3.tgz",
"integrity": "sha512-rfl6VohBFoT0U64fVdOGag2p0D+YZbki7HQ5bjFZObStWBaWjjataIHFDjl4KuSr3yHBMgGd/+Va7W4Z2Y0LRg==",
"license": "MIT",
"peerDependencies": {
"react": ">=16.14.0",

View File

@ -62,7 +62,7 @@
"monaco-yaml": "^5.3.1",
"mutative": "^1.1.0",
"next": "14.2.24",
"next-themes": "^0.4.4",
"next-themes": "^0.4.5",
"papaparse": "^5.5.2",
"pluralize": "^8.0.0",
"posthog-js": "^1.229.5",
@ -71,7 +71,7 @@
"react": "^18",
"react-color": "^2.19.3",
"react-data-grid": "^7.0.0-beta.48",
"react-day-picker": "^9.5.1",
"react-day-picker": "^9.6.1",
"react-dom": "^18",
"react-hotkeys-hook": "^4.6.1",
"react-markdown": "^10.1.0",

View File

@ -18,10 +18,10 @@ export default async function Index() {
if (user?.id) {
return redirect(
createBusterRoute({
route: BusterRoutes.APP_METRIC
route: BusterRoutes.APP_HOME
})
);
}
return <>testing123</>;
return <></>;
}