diff --git a/packages/frontend/src/assets/projects.json b/packages/frontend/src/assets/projects.json index c9f9e419..7c917f48 100644 --- a/packages/frontend/src/assets/projects.json +++ b/packages/frontend/src/assets/projects.json @@ -2,14 +2,14 @@ { "id": 1, "icon": "^", - "name": "iglotools", - "title": "Iglotools", - "domain": "", + "name": "iglootools", + "title": "Iglootools", + "domain": null, "organization": "Airfoil", - "url": "iglotools.co", + "url": "iglootools.co", "createdAt": "2023-12-07T04:20:00", "createdBy": "Alice", - "deployment": "iglotools.snowballtools.co", + "deployment": "iglootools.snowballtools.co", "source": "feature/add-remote-control", "latestCommit": { "message": "subscription added", @@ -22,7 +22,7 @@ "icon": "^", "name": "snowball-starter-kit", "title": "Snowball Starter Kit", - "domain": "", + "domain": null, "organization": "Snowball", "url": "starterkit.snowballtools.com", "createdAt": "2023-12-04T04:20:00", @@ -40,7 +40,7 @@ "icon": "^", "name": "web3-android", "title": "Web3 Android", - "domain": "", + "domain": null, "organization": "Personal", "url": "web3fordroids.com", "createdAt": "2023-12-01T04:20:00", @@ -58,7 +58,7 @@ "icon": "^", "name": "passkeys-demo", "title": "Passkeys Demo", - "domain": "", + "domain": null, "organization": "Airfoil", "url": "passkeys.iglootools.xyz", "createdAt": "2023-12-01T04:20:00", @@ -76,9 +76,9 @@ "icon": "^", "name": "iglootools", "title": "Iglootools", - "domain": "", + "domain": null, "organization": "Airfoil", - "url": "iglotools.xyz", + "url": "iglootools.xyz", "createdAt": "2023-12-11T04:20:00", "createdBy": "Erin", "deployment": "staging.snowballtools.com", @@ -94,12 +94,12 @@ "icon": "^", "name": "iglootools", "title": "Iglootools", - "domain": "", + "domain": null, "organization": "Airfoil", - "url": "iglotools.xyz", + "url": "iglootools.xyz", "createdAt": "2023-12-11T04:20:00", "createdBy": "Frank", - "deployment": "iglotools.snowballtools.com", + "deployment": "iglootools.snowballtools.com", "source": "prod/fix-error", "latestCommit": { "message": "design system integrated", diff --git a/packages/frontend/src/types/project.ts b/packages/frontend/src/types/project.ts index 1e8c6a7f..41d5daa4 100644 --- a/packages/frontend/src/types/project.ts +++ b/packages/frontend/src/types/project.ts @@ -4,7 +4,7 @@ export interface ProjectDetails { title: string; organization: string; url: string; - domain: string; + domain: string | null; id: number; createdAt: string; createdBy: string;