interactive intro to open social at-me.zzstoatzz.io

fix: populate POV indicator with viewed handle

The povHandle element was never being set after the client-side
migration. Now displays the viewed user's handle with a link to
their Bluesky profile.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

+7
+7
src/view/main.js
··· 93 handleEl.textContent = `@${state.globalHandle}`; 94 } 95 96 statusEl.textContent = 'loading profile...'; 97 98 // Get profile for avatar
··· 93 handleEl.textContent = `@${state.globalHandle}`; 94 } 95 96 + // Update POV indicator 97 + const povHandleEl = document.getElementById('povHandle'); 98 + if (povHandleEl) { 99 + povHandleEl.textContent = `@${state.globalHandle}`; 100 + povHandleEl.href = `https://bsky.app/profile/${state.globalHandle}`; 101 + } 102 + 103 statusEl.textContent = 'loading profile...'; 104 105 // Get profile for avatar