Skip to content

Commit

Permalink
Update page-client.tsx (solana-foundation#433)
Browse files Browse the repository at this point in the history
Fees not shown correctly when there are none. Not quite sure why that
happens locally yet. But this fixes it.

<img width="1316" alt="image"
src="https://github.com/user-attachments/assets/8947bccd-08c9-4f47-a458-291ce03887bd"
/>

<img width="983" alt="image"
src="https://github.com/user-attachments/assets/d320ed34-6b60-4ac2-bdd1-377d6b90208e"
/>
  • Loading branch information
Woody4618 authored and monological committed Jan 10, 2025
1 parent bfa2a33 commit b9b84bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/tx/[signature]/page-client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ function StatusCard({ signature, autoRefresh }: SignatureProps & AutoRefreshProp
</tr>
)}

{fee && (
{fee !== undefined && (
<tr>
<td>Fee ({explorerConfig.symbol})</td>
<td className="text-lg-end">
Expand Down

0 comments on commit b9b84bd

Please sign in to comment.