change to scrollable inner

zio/stable
Samuel Newman 2024-03-15 16:22:09 +00:00
parent 58ac22c45b
commit 38ea041136
1 changed files with 2 additions and 2 deletions

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>
)
}