Fix issues.

This commit is contained in:
Mike Cao
2026-02-26 10:29:24 -08:00
parent 5fbecfa5a6
commit 0196b0d95d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@
},
"type": "module",
"scripts": {
"dev": "next dev -p 3002 --turbo",
"dev": "dotenv next dev --turbo",
"build": "npm-run-all check-env build-db check-db build-tracker build-recorder build-geo build-app",
"start": "next start",
"build-docker": "npm-run-all build-db build-tracker build-geo build-app",
@@ -1,4 +1,4 @@
export const MIN_ROW_HEIGHT = 300;
export const MIN_ROW_HEIGHT = 150;
export const MAX_ROW_HEIGHT = 600;
export const MIN_COLUMN_WIDTH = 300;
export const BUTTON_ROW_HEIGHT = 60;
+1 -1
View File
@@ -103,7 +103,7 @@ export function useWebsiteNavItems(websiteId: string) {
},
{
id: 'replays',
label: formatMessage(labels.replays),
label: t(labels.replays),
icon: <Video />,
path: renderPath('/replays'),
},