Fix typo and use null type for project domain (#21)
* Fix typo iglootools * Use null type for project domain
This commit is contained in:
parent
0a1a53e0bc
commit
5dc079bc8f
@ -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",
|
||||
|
@ -4,7 +4,7 @@ export interface ProjectDetails {
|
||||
title: string;
|
||||
organization: string;
|
||||
url: string;
|
||||
domain: string;
|
||||
domain: string | null;
|
||||
id: number;
|
||||
createdAt: string;
|
||||
createdBy: string;
|
||||
|
Loading…
Reference in New Issue
Block a user