Skip to content

Commit

Permalink
fixed copy details where image wasn't being copied
Browse files Browse the repository at this point in the history
  • Loading branch information
babakamyljanovssw committed Dec 11, 2024
1 parent dd08fd7 commit 8e39ab4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const CopyProfileInformation = ({
const copyHtmlToClipboard = async () => {
const PREPAID_DISCOUNT = 15;
const siteUrl = window.location?.origin;
const imageUrl = siteUrl.concat(profileImage.src);
const imageUrl = siteUrl.concat(profileImage);

const htmlToCopy = `
<table border="0" cellspacing="0" cellpadding="0" style="width: auto;">
Expand Down

0 comments on commit 8e39ab4

Please sign in to comment.