diff options
author | hailey <me@haileyok.com> | 2025-05-06 11:13:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-06 11:13:15 -0700 |
commit | 0d02a076d9b309618f3415eaae7c0f58343acdb0 (patch) | |
tree | 3eb01ec8c5348469126dbd3ef8fafd4146ae020a /src/components/Dialog/shared.tsx | |
parent | 521ec8e044e58633530e1864e7abc6e22554d7d3 (diff) | |
download | voidsky-0d02a076d9b309618f3415eaae7c0f58343acdb0.tar.zst |
bump cropper version (#8339)
* mostly implement * type errors * unused import * rm comment * stop accidentally deleting the image while compressing * upgrade * type fixes * upgrade, remove timeout * bump * rm mock * bump * bump --------- Co-authored-by: Samuel Newman <mozzius@protonmail.com>
Diffstat (limited to 'src/components/Dialog/shared.tsx')
-rw-r--r-- | src/components/Dialog/shared.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/Dialog/shared.tsx b/src/components/Dialog/shared.tsx index eec47b2ba..40d040878 100644 --- a/src/components/Dialog/shared.tsx +++ b/src/components/Dialog/shared.tsx @@ -1,11 +1,11 @@ -import React from 'react' import { - LayoutChangeEvent, - StyleProp, - TextStyle, + type LayoutChangeEvent, + type StyleProp, + type TextStyle, View, - ViewStyle, + type ViewStyle, } from 'react-native' +import type React from 'react' import {atoms as a, useTheme} from '#/alf' import {Text} from '#/components/Typography' |