From 08804f265e6ff8ec600295772baf8a72cbf5150d Mon Sep 17 00:00:00 2001 From: Ansh Date: Fri, 23 Jun 2023 10:48:52 -0700 Subject: [APP-690] better handling of post languages language filtering (#893) * add SelectLangBtn * memoized objects that are created to reduce re-creation on re-render * add langs when uploading post * only send the top 3 languages otherwise backend will throw error * mv ContentLanguagesSettings to folder * add post languages settings modal and state * fix typos * modify feed manip to also check langs label on post * Fix tests * Remove log * Update feed-manip.ts * Fix syntax errors * UI tuneups * Show the currently selected languages in the composer * fix linting * Use a bcp-47 matching function * Fix a duplicate language issue * Fix web * Dont include lang in prompt * Make select language btn an observer * Keep device languages on top of language selection UIs * Fix android build settings * Enforce a max of 3 languages in posts * Fix tests * Fix types --------- Co-authored-by: Paul Frazee --- src/view/com/util/forms/ToggleButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/view/com/util/forms/ToggleButton.tsx') diff --git a/src/view/com/util/forms/ToggleButton.tsx b/src/view/com/util/forms/ToggleButton.tsx index 804d414b3..47620d0a6 100644 --- a/src/view/com/util/forms/ToggleButton.tsx +++ b/src/view/com/util/forms/ToggleButton.tsx @@ -17,7 +17,7 @@ export function ToggleButton({ label: string isSelected: boolean style?: StyleProp - onPress: () => void + onPress?: () => void }) { const theme = useTheme() const circleStyle = choose>(type, { -- cgit 1.4.1