Skip to content

Commit 3c33e42

Browse files
Fix post interaction selectable text being cut off (bluesky-social#6527)
1 parent 5d7cfa0 commit 3c33e42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/dialogs/PostInteractionSettingsDialog.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export function PostInteractionSettingsForm({
306306
}
307307
value={quotesEnabled}
308308
onChange={onChangeQuotesEnabled}
309-
style={[, a.justify_between, a.pt_xs]}>
309+
style={[a.justify_between, a.pt_xs]}>
310310
<Text style={[t.atoms.text_contrast_medium]}>
311311
{quotesEnabled ? (
312312
<Trans>Quote posts enabled</Trans>
@@ -483,7 +483,7 @@ function Selectable({
483483
a.justify_between,
484484
a.rounded_sm,
485485
a.p_md,
486-
{height: 40}, // for consistency with checkmark icon visible or not
486+
{minHeight: 40}, // for consistency with checkmark icon visible or not
487487
t.atoms.bg_contrast_50,
488488
(hovered || focused) && t.atoms.bg_contrast_100,
489489
isSelected && {

0 commit comments

Comments
 (0)