A social knowledge tool for researchers built on ATProto

fix: remove URL encoding in bookmarklet code

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+1 -1
+1 -1
src/webapp/app/bookmarklet/page.tsx
··· 20 20 const appUrl = process.env.NEXT_PUBLIC_APP_URL || 'http://localhost:3000'; 21 21 22 22 const bookmarkletCode = `javascript:(function(){ 23 - const currentUrl = encodeURIComponent(window.location.href); 23 + const currentUrl = window.location.href; 24 24 const sembleUrl = '${appUrl}/url?id=' + currentUrl; 25 25 window.open(sembleUrl, '_blank'); 26 26 })();`;