Skip to content

Commit 794dff7

Browse files
fix: update local dev port to 4000 and minor UI fixes
1 parent 51aef62 commit 794dff7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
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

app/clientapp/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ function AddProjectPage() {
6363

6464

6565
if ( !((logo || logoFile) && profileName && profileDescription && appUrls[0])) {
66-
console.log("Enter All Feilds");
67-
setError("Please enter all feilds.");
66+
console.log("Enter All Fields");
67+
setError("Please enter all fields.");
6868
return;
6969
}
7070

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)