We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bced2bd commit 65a6a6cCopy full SHA for 65a6a6c
src/ui/views/DesktopProfile/components/NFTTabPane/index.tsx
@@ -242,7 +242,10 @@ export const NFTTabPane: React.FC<{ selectChainId?: string }> = ({
242
collection={state.current?.collection}
243
onSend={() => {
244
const query = new URLSearchParams();
245
- query.set('nftItem', JSON.stringify(state.current!.nft!));
+ query.set(
246
+ 'nftItem',
247
+ encodeURIComponent(JSON.stringify(state.current!.nft))
248
+ );
249
query.set('action', 'send');
250
query.set('sendPageType', 'sendNft');
251
history.replace(`${history.location.pathname}?${query.toString()}`);
0 commit comments