From 4a1b1f17f46de9f8dde2766d61edc02c2267b14b Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Tue, 9 Sep 2025 18:45:36 +0300 Subject: Clean up dialogs (#8934) --- src/screens/Settings/components/ExportCarDialog.tsx | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'src/screens/Settings/components/ExportCarDialog.tsx') diff --git a/src/screens/Settings/components/ExportCarDialog.tsx b/src/screens/Settings/components/ExportCarDialog.tsx index edeccd128..d5131c5c6 100644 --- a/src/screens/Settings/components/ExportCarDialog.tsx +++ b/src/screens/Settings/components/ExportCarDialog.tsx @@ -1,4 +1,4 @@ -import React from 'react' +import {useCallback, useState} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -18,14 +18,14 @@ import {Text} from '#/components/Typography' export function ExportCarDialog({ control, }: { - control: Dialog.DialogOuterProps['control'] + control: Dialog.DialogControlProps }) { const {_} = useLingui() const t = useTheme() const agent = useAgent() - const [loading, setLoading] = React.useState(false) + const [loading, setLoading] = useState(false) - const download = React.useCallback(async () => { + const download = useCallback(async () => { if (!agent.session) { return // shouldnt ever happen } @@ -52,7 +52,7 @@ export function ExportCarDialog({ }, [_, control, agent]) return ( - + + style={[a.text_sm, a.leading_snug, t.atoms.text_contrast_high]}> Your account repository, containing all public data records, can be downloaded as a "CAR" file. This file does not include media @@ -73,7 +73,6 @@ export function ExportCarDialog({