diff --git a/src/view/com/composer/ExternalEmbed.tsx b/src/view/com/composer/ExternalEmbed.tsx
index b7c10e4c95..ab91d3c59a 100644
--- a/src/view/com/composer/ExternalEmbed.tsx
+++ b/src/view/com/composer/ExternalEmbed.tsx
@@ -7,10 +7,9 @@ import {
} from 'react-native'
import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome'
import {BlurView} from '@react-native-community/blur'
-import LinearGradient from 'react-native-linear-gradient'
import {Image} from '../util/images/Image'
import {Text} from '../util/text/Text'
-import {s, gradients} from '../../lib/styles'
+import {s} from '../../lib/styles'
import {usePalette} from '../../lib/hooks/usePalette'
import {ExternalEmbedDraft} from '../../../state/lib/api'
@@ -39,19 +38,7 @@ export const ExternalEmbed = ({
) : link.localThumb ? (
- ) : (
-
- )}
-
-
-
-
-
+ ) : undefined}
{!!link.meta?.title && (
@@ -78,6 +65,11 @@ export const ExternalEmbed = ({
)}
+
+
+
+
+
)
}
@@ -97,9 +89,6 @@ const styles = StyleSheet.create({
width: '100%',
maxHeight: 200,
},
- imageFallback: {
- height: 160,
- },
removeBtn: {
position: 'absolute',
top: 10,
diff --git a/src/view/com/util/PostEmbeds.tsx b/src/view/com/util/PostEmbeds.tsx
index 5c2af59e13..ab71933821 100644
--- a/src/view/com/util/PostEmbeds.tsx
+++ b/src/view/com/util/PostEmbeds.tsx
@@ -7,7 +7,6 @@ import {
Image as RNImage,
} from 'react-native'
import {AppBskyEmbedImages, AppBskyEmbedExternal} from '@atproto/api'
-import LinearGradient from 'react-native-linear-gradient'
import {Link} from '../util/Link'
import {Text} from './text/Text'
import {Image} from './images/Image'
@@ -15,7 +14,6 @@ import {ImageLayoutGrid} from './images/ImageLayoutGrid'
import {ImagesLightbox} from '../../../state/models/shell-ui'
import {useStores} from '../../../state'
import {usePalette} from '../../lib/hooks/usePalette'
-import {gradients} from '../../lib/styles'
import {saveImageModal} from '../../../lib/images'
type Embed =
@@ -112,14 +110,7 @@ export function PostEmbeds({
noFeedback>
{link.thumb ? (
- ) : (
-
- )}
+ ) : undefined}
{link.title || link.uri}
@@ -167,9 +158,6 @@ const styles = StyleSheet.create({
width: '100%',
maxHeight: 200,
},
- extImageFallback: {
- height: 160,
- },
extUri: {
marginTop: 2,
},