a tool for shared writing and social publishing
0
fork

Configure Feed

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

add key to embed

+3 -1
+3 -1
components/Blocks/BlueskyPostBlock/BlueskyEmbed.tsx
··· 145 145 <div className="flex flex-col gap-2 "> 146 146 {text && <pre className="whitespace-pre-wrap">{text}</pre>} 147 147 {record.embeds !== undefined 148 - ? record.embeds.map((embed) => <BlueskyEmbed embed={embed} />) 148 + ? record.embeds.map((embed, index) => ( 149 + <BlueskyEmbed embed={embed} key={index} /> 150 + )) 149 151 : null} 150 152 </div> 151 153 </div>