an independent Bluesky client using Constellation, PDS Queries, and other services reddwarf.app
frontend spa bluesky reddwarf microcosm client app
92
fork

Configure Feed

Select the types of activity you want to include in your feed.

Polls hostname domain temporary

+4 -1
+4 -1
src/components/Composer.tsx
··· 135 135 }; 136 136 137 137 let externalEmbed = null; 138 + 139 + // todo get real way of doing this better getting domain 140 + const domain = window.location.hostname; 138 141 if (uploadedPollImageBlob) { 139 142 externalEmbed = { 140 143 $type: "app.bsky.embed.external", 141 144 external: { 142 - uri: `https://reddwarf.app/profile/${agent.did}/post/${rkey}`, // Todo: update to your actual poll viewer URL 145 + uri: `https://${domain}/profile/${agent.did}/post/${rkey}`, // Todo: update to your actual poll viewer URL 143 146 title: "Poll created by " + agent.did, 144 147 description: "Click to participate in this poll", 145 148 thumb: uploadedPollImageBlob,