change to scrollable inner

This commit is contained in:
Samuel Newman
2024-03-15 16:22:09 +00:00
parent 58ac22c45b
commit 38ea041136
+2 -2
View File
@@ -31,7 +31,7 @@ export function BirthDateSettingsDialog({
return (
<Dialog.Outer control={control}>
<Dialog.Handle />
<Dialog.Inner label={_(msg`My Birthday`)}>
<Dialog.ScrollableInner label={_(msg`My Birthday`)}>
{preferences && !isPending ? (
<BirthdayInner
control={control}
@@ -43,7 +43,7 @@ export function BirthDateSettingsDialog({
) : (
<ActivityIndicator size="large" style={a.my_5xl} />
)}
</Dialog.Inner>
</Dialog.ScrollableInner>
</Dialog.Outer>
)
}