Fix typo and use null type for project domain (#21)

* Fix typo iglootools

* Use null type for project domain
This commit is contained in:
Nabarun Gogoi 2023-12-21 16:55:47 +05:30 committed by GitHub
parent 0a1a53e0bc
commit 5dc079bc8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 14 deletions

View File

@ -2,14 +2,14 @@
{ {
"id": 1, "id": 1,
"icon": "^", "icon": "^",
"name": "iglotools", "name": "iglootools",
"title": "Iglotools", "title": "Iglootools",
"domain": "", "domain": null,
"organization": "Airfoil", "organization": "Airfoil",
"url": "iglotools.co", "url": "iglootools.co",
"createdAt": "2023-12-07T04:20:00", "createdAt": "2023-12-07T04:20:00",
"createdBy": "Alice", "createdBy": "Alice",
"deployment": "iglotools.snowballtools.co", "deployment": "iglootools.snowballtools.co",
"source": "feature/add-remote-control", "source": "feature/add-remote-control",
"latestCommit": { "latestCommit": {
"message": "subscription added", "message": "subscription added",
@ -22,7 +22,7 @@
"icon": "^", "icon": "^",
"name": "snowball-starter-kit", "name": "snowball-starter-kit",
"title": "Snowball Starter Kit", "title": "Snowball Starter Kit",
"domain": "", "domain": null,
"organization": "Snowball", "organization": "Snowball",
"url": "starterkit.snowballtools.com", "url": "starterkit.snowballtools.com",
"createdAt": "2023-12-04T04:20:00", "createdAt": "2023-12-04T04:20:00",
@ -40,7 +40,7 @@
"icon": "^", "icon": "^",
"name": "web3-android", "name": "web3-android",
"title": "Web3 Android", "title": "Web3 Android",
"domain": "", "domain": null,
"organization": "Personal", "organization": "Personal",
"url": "web3fordroids.com", "url": "web3fordroids.com",
"createdAt": "2023-12-01T04:20:00", "createdAt": "2023-12-01T04:20:00",
@ -58,7 +58,7 @@
"icon": "^", "icon": "^",
"name": "passkeys-demo", "name": "passkeys-demo",
"title": "Passkeys Demo", "title": "Passkeys Demo",
"domain": "", "domain": null,
"organization": "Airfoil", "organization": "Airfoil",
"url": "passkeys.iglootools.xyz", "url": "passkeys.iglootools.xyz",
"createdAt": "2023-12-01T04:20:00", "createdAt": "2023-12-01T04:20:00",
@ -76,9 +76,9 @@
"icon": "^", "icon": "^",
"name": "iglootools", "name": "iglootools",
"title": "Iglootools", "title": "Iglootools",
"domain": "", "domain": null,
"organization": "Airfoil", "organization": "Airfoil",
"url": "iglotools.xyz", "url": "iglootools.xyz",
"createdAt": "2023-12-11T04:20:00", "createdAt": "2023-12-11T04:20:00",
"createdBy": "Erin", "createdBy": "Erin",
"deployment": "staging.snowballtools.com", "deployment": "staging.snowballtools.com",
@ -94,12 +94,12 @@
"icon": "^", "icon": "^",
"name": "iglootools", "name": "iglootools",
"title": "Iglootools", "title": "Iglootools",
"domain": "", "domain": null,
"organization": "Airfoil", "organization": "Airfoil",
"url": "iglotools.xyz", "url": "iglootools.xyz",
"createdAt": "2023-12-11T04:20:00", "createdAt": "2023-12-11T04:20:00",
"createdBy": "Frank", "createdBy": "Frank",
"deployment": "iglotools.snowballtools.com", "deployment": "iglootools.snowballtools.com",
"source": "prod/fix-error", "source": "prod/fix-error",
"latestCommit": { "latestCommit": {
"message": "design system integrated", "message": "design system integrated",

View File

@ -4,7 +4,7 @@ export interface ProjectDetails {
title: string; title: string;
organization: string; organization: string;
url: string; url: string;
domain: string; domain: string | null;
id: number; id: number;
createdAt: string; createdAt: string;
createdBy: string; createdBy: string;