Skip to content

Commit

Permalink
fix rdd field (#2316)
Browse files Browse the repository at this point in the history
  • Loading branch information
khadni authored Feb 5, 2025
1 parent 23068b9 commit f3ccedb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/features/feeds/components/Tables.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ const SmartDataTr = ({ network, proxy, showExtraDetails }) => (
<dt>
<span className="label">Asset name:</span>
</dt>
<dd>{proxy.docs.assetName}</dd>
<dd>{proxy.assetName}</dd>
</div>
{proxy.docs.porType && (
<div className={tableStyles.definitionGroup}>
Expand Down Expand Up @@ -784,12 +784,12 @@ const StreamsTr = ({ proxy, isMainnet }) => (
<dd>{proxy.docs.clicProductName}</dd>
</div>
)}
{proxy.docs.assetName && (
{proxy.assetName && (
<div className={tableStyles.definitionGroup}>
<dt>
<span className="label">Asset name:</span>
</dt>
<dd>{proxy.docs.assetName}</dd>
<dd>{proxy.assetName}</dd>
</div>
)}
{proxy.docs.assetClass ? (
Expand Down

0 comments on commit f3ccedb

Please sign in to comment.