Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
rhlsthrm committed Dec 10, 2024
1 parent 0d2046e commit a0bdd2b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/ui/app/_components/xION/Quote.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function Quote({
/>
</span>
</div>
{args.amount && (
{args.amount ? (
<>
<div className={`flex items-center justify-between w-full `}>
<span className="text-white/50">Fees</span>
Expand Down Expand Up @@ -113,6 +113,8 @@ export default function Quote({
</span>
</div>
</>
) : (
<></>
)}
</div>
);
Expand Down

0 comments on commit a0bdd2b

Please sign in to comment.