From 5f39ca31872af0554d79d9a6d0b070110385e9bd Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 21 Mar 2024 12:21:36 -0500 Subject: Mods UI fixes (#3296) * Fix report dialog buttons on Android by adjusting styles * Dry up label pref comp --- src/components/ReportDialog/index.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/components/ReportDialog/index.tsx') diff --git a/src/components/ReportDialog/index.tsx b/src/components/ReportDialog/index.tsx index b41df3b3a..c87d32f9e 100644 --- a/src/components/ReportDialog/index.tsx +++ b/src/components/ReportDialog/index.tsx @@ -1,6 +1,7 @@ import React from 'react' import {Pressable, View} from 'react-native' -import {Trans} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' import {ReportOption} from '#/lib/moderation/useReportOptions' import {useMyLabelersQuery} from '#/state/queries/preferences' @@ -31,6 +32,7 @@ export function ReportDialog(props: ReportDialogProps) { } function ReportDialogInner(props: ReportDialogProps) { + const {_} = useLingui() const { isLoading: isLabelerLoading, data: labelers, @@ -44,7 +46,7 @@ function ReportDialogInner(props: ReportDialogProps) { }) return ( - + {isLoading ? ( -- cgit 1.4.1