a tool for shared writing and social publishing
0

Configure Feed

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

fix email template post links

Jared Pereira (May 28, 2026, 5:32 PM EDT) f7ce9327 38846e45

+9 -1
+9 -1
emails/post.tsx
··· 483 483 assetsBaseUrl={p.assetsBaseUrl} 484 484 theme={theme} 485 485 colors={c} 486 + postUrl={p.postUrl} 486 487 /> 487 488 ))} 488 489 ··· 687 688 assetsBaseUrl, 688 689 theme, 689 690 colors, 691 + postUrl, 690 692 }: { 691 693 block: PubLeafletPagesLinearDocument.Block["block"]; 692 694 alignment?: string; ··· 694 696 assetsBaseUrl: string; 695 697 theme: EmailTheme; 696 698 colors: ResolvedColors; 699 + postUrl: string; 697 700 }) => { 698 701 if (PubLeafletBlocksText.isMain(block)) { 699 702 return ( ··· 862 865 /> 863 866 ); 864 867 } 865 - return <BlockNotSupported theme={theme} colors={colors} />; 868 + return ( 869 + <BlockNotSupported theme={theme} colors={colors} postUrl={postUrl} /> 870 + ); 866 871 }; 867 872 868 873 // Helpers used by the confirm-email templates inside their <Tailwind> ··· 1276 1281 export const BlockNotSupported = ({ 1277 1282 theme = defaultEmailTheme, 1278 1283 colors, 1284 + postUrl, 1279 1285 }: { 1280 1286 theme?: EmailTheme; 1281 1287 colors?: ResolvedColors; 1288 + postUrl?: string; 1282 1289 } = {}) => { 1283 1290 const c = colors ?? resolveColors(theme); 1284 1291 return ( ··· 1312 1319 }} 1313 1320 > 1314 1321 <Link 1322 + href={postUrl} 1315 1323 style={{ 1316 1324 color: theme.accentBackground, 1317 1325 fontWeight: "bold",