Skip to content

Commit

Permalink
fix: remove quotes from encoded link
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSBulgakov committed Feb 14, 2024
1 parent 841cacc commit 2332ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/music-room/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function Page() {
<button
onClick={() => {
const encodedURL =
"Imh0dHBzOi8vdC5tZS9qb2luY2hhdC9Eamh5WmtCTi1GbVpTdHhUQjQwcXdRIg==";
"aHR0cHM6Ly90Lm1lL2pvaW5jaGF0L0RqaHlaa0JOLUZtWlN0eFRCNDBxd1E=";
const url = atob(encodedURL);
window.open(url, "_blank");
}}
Expand Down

0 comments on commit 2332ffc

Please sign in to comment.