Skip to content

Commit f29deaa

Browse files
joaquim-vergesjnsdls
authored andcommitted
Update airdrop-tab.tsx
1 parent d0e5566 commit f29deaa

File tree

2 files changed

+5
-8
lines changed
  • apps/dashboard/src/app

2 files changed

+5
-8
lines changed

apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/nfts/[tokenId]/components/airdrop-tab.tsx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,10 @@ const AirdropTab: React.FC<AirdropTabProps> = ({ contract, tokenId }) => {
137137
</Sheet>
138138

139139
<div
140-
className={cn(
141-
"flesx-row flex items-center justify-center gap-2",
142-
{
143-
"text-orange-500": addresses.length === 0,
144-
"text-green-500": addresses.length > 0,
145-
},
146-
)}
140+
className={cn("flex flex-row items-center justify-center gap-2", {
141+
"text-orange-500": addresses.length === 0,
142+
"text-green-500": addresses.length > 0,
143+
})}
147144
>
148145
{addresses.length > 0 && (
149146
<p>

apps/dashboard/src/app/team/[team_slug]/(team)/~/engine/(instance)/[engineId]/metrics/components/EngineSystemMetrics.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export const EngineSystemMetrics: React.FC<EngineStatusProps> = ({
5555
systemMetricsPanel = (
5656
<Card p={16}>
5757
<div className="flex flex-col gap-4">
58-
<div className="flex flex-row items-center gap-2 pb-[-8px]">
58+
<div className="-mb-2 flex flex-row items-center gap-2">
5959
<ChartAreaIcon className="size-4" />
6060
<Heading size="title.md">System Metrics</Heading>
6161
</div>

0 commit comments

Comments
 (0)