Skip to content

Commit

Permalink
fix(app): make on-chain status use feature flag (#1297)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianHymer authored May 22, 2023
1 parent 519b335 commit 6643e39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/components/StampSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ export function StampSelector({
>
<div className={`text-md relative top-[-0.3em] ${textColor}`}>
{process.env.NEXT_PUBLIC_FF_CHAIN_SYNC === "on" &&
onChainProviders[provider.name as keyof OnChainProvidersType]?.isOnChain ? (
<LinkIcon className="mr-2 inline h-6 w-5 text-accent-3" />
) : (
<LinkIcon className="mr-2 inline h-6 w-5 text-color-4" />
)}
(onChainProviders[provider.name as keyof OnChainProvidersType]?.isOnChain ? (
<LinkIcon className="mr-2 inline h-6 w-5 text-accent-3" />
) : (
<LinkIcon className="mr-2 inline h-6 w-5 text-color-4" />
))}
{provider.title}
</div>
</li>
Expand Down

2 comments on commit 6643e39

@Sp771433
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good 👍😊

@RDW9
Copy link

@RDW9 RDW9 commented on 6643e39 May 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great

Please sign in to comment.