style: create project modal (#1628)

* style: create project modal

* fix: build error

* fix: modal width
This commit is contained in:
Aaryan Khandelwal 2023-07-23 22:14:26 +05:30 committed by GitHub
parent ccbcfecc6d
commit a7b5ad55ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 273 additions and 191 deletions

View file

@ -360,11 +360,8 @@ export const AnalyticsSidebar: React.FC<Props> = ({
<div className="flex items-center gap-2 text-xs">
<h6 className="text-custom-text-200">Network</h6>
<span>
{
NETWORK_CHOICES[
`${projectDetails?.network}` as keyof typeof NETWORK_CHOICES
]
}
{NETWORK_CHOICES.find((n) => n.key === projectDetails?.network)?.label ??
""}
</span>
</div>
</div>