diff options
author | Eric Bailey <git@esb.lol> | 2025-09-04 19:36:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-04 19:36:23 -0500 |
commit | c129108b786a3389181c401b0bdfe1a3de528ebb (patch) | |
tree | e075d0c41c8829d9c0b66464ba7cb86dd105be4e /src/components/ageAssurance/AgeRestrictedScreen.tsx | |
parent | 0b480bdaf862b0f93ed480589f81433bd6c93126 (diff) | |
download | voidsky-c129108b786a3389181c401b0bdfe1a3de528ebb.tar.zst |
108 fixes (#8977)
* Translation comment * Fix error handling in starter pack generation * Allow access to DM settings for age restricted users * Leave post stat unit formatting up to translators
Diffstat (limited to 'src/components/ageAssurance/AgeRestrictedScreen.tsx')
-rw-r--r-- | src/components/ageAssurance/AgeRestrictedScreen.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/components/ageAssurance/AgeRestrictedScreen.tsx b/src/components/ageAssurance/AgeRestrictedScreen.tsx index b47cc5b0c..1430aaaff 100644 --- a/src/components/ageAssurance/AgeRestrictedScreen.tsx +++ b/src/components/ageAssurance/AgeRestrictedScreen.tsx @@ -18,10 +18,12 @@ export function AgeRestrictedScreen({ children, screenTitle, infoText, + rightHeaderSlot, }: { children: React.ReactNode screenTitle?: string infoText?: string + rightHeaderSlot?: React.ReactNode }) { const {_} = useLingui() const copy = useAgeAssuranceCopy() @@ -46,12 +48,12 @@ export function AgeRestrictedScreen({ <Layout.Screen> <Layout.Header.Outer> <Layout.Header.BackButton /> - <Layout.Header.Content> + <Layout.Header.Content align="left"> <Layout.Header.TitleText> {screenTitle ?? <Trans>Unavailable</Trans>} </Layout.Header.TitleText> </Layout.Header.Content> - <Layout.Header.Slot /> + {rightHeaderSlot ?? <Layout.Header.Slot />} </Layout.Header.Outer> <Layout.Content> <View style={[a.p_lg]}> |