Skip to content

Commit

Permalink
fix: linkdrop link
Browse files Browse the repository at this point in the history
  • Loading branch information
gagdiez committed Oct 14, 2024
1 parent 61c728a commit 7297cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/tools/Linkdrops/ListTokenDrop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const ListTokenDrop = ({ drops }: { drops: Drops[] }) => {
onClick={() => {
const url =
`https://${networkId === 'mainnet' ? 'app' : 'testnet'}.mynearwallet.com` +
`/linkdrop/v2.keypom.${networkId}/` +
`/linkdrop/v2.keypom.${networkId === 'mainnet' ? 'near' : 'testnet'}/` +
key.private;
copyTextToClipboard(url, url);
}}
Expand Down

0 comments on commit 7297cb3

Please sign in to comment.