Put ExternalEmbedRemoveBtn on top (#5887)

This commit is contained in:
Eric Bailey
2024-10-24 14:02:42 -05:00
committed by GitHub
parent 090ac041c3
commit fa4cca11fe
@@ -11,7 +11,7 @@ export function ExternalEmbedRemoveBtn({onRemove}: {onRemove: () => void}) {
const {_} = useLingui()
return (
<View style={[a.absolute, a.pt_sm, a.pr_sm, {top: 0, right: 0}]}>
<View style={[a.absolute, a.pt_sm, a.pr_sm, a.z_50, {top: 0, right: 0}]}>
<Button
label={_(msg`Remove attachment`)}
onPress={onRemove}