Skip to content

Commit 7af674d

Browse files
refactor: update local dev port to 4000 and minor UI fixes
1 parent 51aef62 commit 7af674d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
PORT=4000
12
NEXT_PUBLIC_DASHBOARD_API=https://app.plurality.local
23

34
# Orbis

components/AppCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ export default function AppCard({ app, onEdit }: { app: ClientApp, onEdit: () =>
120120

121121
{/* Client App Secret */}
122122
<p className="text-sm text-gray-500 mb-2 flex items-center gap-2 cursor-pointer">
123-
Client APP Secret: {project?.clientAppId === app.id ? ShortenId(project.clientSecret) : '********************'}
123+
Client App Secret: {project?.clientAppId === app.id ? ShortenId(project.clientSecret) : '********************'}
124124
{project?.clientAppId === app.id && (
125125
<IoCopyOutline
126126
className="ml-auto cursor-pointer hover:text-gray-700 transition-colors"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "1.2.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev",
6+
"dev": "next dev -p 4000",
77
"build": "next build",
88
"start": "next start",
99
"lint": "next lint",

0 commit comments

Comments
 (0)