diff options
author | Eric Bailey <git@esb.lol> | 2024-03-19 09:57:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 09:57:14 -0500 |
commit | 8ac5144a584450f037771de4da775d545b70ffa3 (patch) | |
tree | ae58af785be1571b943b48983bed7a7b38dcebec /src/screens/Moderation/index.tsx | |
parent | 4de8e8fa14774e753dea94a8fc01a5847c5dfcd2 (diff) | |
download | voidsky-8ac5144a584450f037771de4da775d545b70ffa3.tar.zst |
Bday modal tweaks (#3252)
* Smol tweaks to bday dialog * Juse use existing DateInput for now * Remove unused code * Remove passed-in prefs * Adjust load state * Revert "Adjust load state" This reverts commit 802459fd044b380ccc4f96432af416996219a0de. * Fix type error
Diffstat (limited to 'src/screens/Moderation/index.tsx')
-rw-r--r-- | src/screens/Moderation/index.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/screens/Moderation/index.tsx b/src/screens/Moderation/index.tsx index 26fa9ec77..d0bfaeade 100644 --- a/src/screens/Moderation/index.tsx +++ b/src/screens/Moderation/index.tsx @@ -308,10 +308,7 @@ export function ModerationScreenInner({ </ButtonText> </Button> - <BirthDateSettingsDialog - control={birthdateDialogControl} - preferences={preferences} - /> + <BirthDateSettingsDialog control={birthdateDialogControl} /> </> )} <View |