Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 4 additions & 16 deletions components/SponsoredFeedsTableWithData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -193,22 +193,10 @@ export const SponsoredFeedsTable = ({
<code className="text-xs font-mono text-gray-600 dark:text-gray-400 break-all leading-relaxed">
{feed.account_address}
</code>
<button
onClick={() =>
feed.account_address &&
copyToClipboard(feed.account_address)
}
className="p-1 hover:bg-gray-200 dark:hover:bg-gray-600 rounded flex-shrink-0 mt-0.5"
title="Copy Account Address"
>
{copiedText === feed.account_address ? (
<span className="text-green-500 text-xs font-bold">
</span>
) : (
<CopyIcon className="w-3 h-3 text-gray-400" />
)}
</button>
<CopyButton
value={feed.account_address}
className="ml-2"
/>
</div>
) : null}
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,5 +382,13 @@
"time_difference": 60,
"price_deviation": 0.5,
"confidence_ratio": 100
},
{
"alias": "WTIU5/USD",
"account_address": "Y3XuRL2ZrRnYSxY1vZWpG7k5SWPhbxcsoBZVodS4gUp",
"id": "ecd49a99bb0a0f772de2a4b5ce93fdb5b7b83ae7dd7d99c68dadf9cc40ee8fbe",
"time_difference": 60,
"price_deviation": 0.5,
"confidence_ratio": 100
}
]
Loading