Skip to content

Commit

Permalink
🚑 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
damianpumar committed Dec 4, 2024
1 parent 7e1faa9 commit 9cb2dde
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const useShareViewModel = () => {

const url = new URL(`${window.location.origin}/share`);
const params = new URLSearchParams("");
params.set("share_image", encodeURIComponent(createImageLink()));
params.set("share_image", encodeURI(createImageLink()));
params.set("dataset_name", dataset.name);
params.set("dataset_id", dataset.id);

Expand Down

0 comments on commit 9cb2dde

Please sign in to comment.