···17export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js`
18export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download'
19export const STARTER_PACK_MAX_SIZE = 150
02021// HACK
22// Yes, this is exactly what it looks like. It's a hard-coded constant
···17export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js`
18export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download'
19export const STARTER_PACK_MAX_SIZE = 150
20+export const CARD_ASPECT_RATIO = 1200 / 630
2122// HACK
23// Yes, this is exactly what it looks like. It's a hard-coded constant
+1-1
src/screens/Onboarding/StepFinished.tsx
···401 ]}>
402 <Image
403 source={image}
404- style={[a.w_full, {aspectRatio: 1}]}
405 alt={alt}
406 accessibilityIgnoresInvertColors={false} // I guess we do need it to blend into the background
407 />
···401 ]}>
402 <Image
403 source={image}
404+ style={[a.w_full, a.aspect_square]}
405 alt={alt}
406 accessibilityIgnoresInvertColors={false} // I guess we do need it to blend into the background
407 />