Skip to content

Commit b2e10c5

Browse files
committed
Fix Docker build
1 parent 1bc28c0 commit b2e10c5

4 files changed

Lines changed: 104 additions & 104 deletions

File tree

apps/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"jose": "^5.2.2",
4747
"lodash": "^4.17.21",
4848
"lucide-react": "^0.508.0",
49-
"next": "16.0.0-beta.0",
49+
"next": "16.0.0",
5050
"next-themes": "^0.2.1",
5151
"posthog-js": "^1.235.0",
5252
"react": "19.2.0",

apps/dashboard/src/app/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ function DevelopmentPortDisplay() {
119119
if (!prefix) return null;
120120
const color = ({
121121
"91": "#eee",
122-
"92": "#e0e0ff",
123-
"93": "#fff8e0",
122+
"92": "#fff8e0",
123+
"93": "#e0e0ff",
124124
} as any)[prefix as any] || undefined;
125125
return (
126126
<div inert className="fixed top-0 left-0 p-2 text-lg text-red-700 animate-[dev-port-slide_120s_linear_infinite] hover:hidden" style={{

apps/dev-launchpad/public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ <h2 style="margin-top: 64px;">Background services</h2>
115115
// Depending on the port prefix, set the color to light grey (port 91), light purple (port 92), papyrus yellow (port 93), or default otherwise
116116
const color = {
117117
"91": "#f8f8f8",
118-
"92": "#e0e0ff",
119-
"93": "#fff8e0",
118+
"92": "#fff8e0",
119+
"93": "#e0e0ff",
120120
}[stackPortPrefix] || undefined;
121121
document.body.style.backgroundColor = color;
122122

0 commit comments

Comments
 (0)