diff options
author | dan <dan.abramov@gmail.com> | 2023-11-17 17:47:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-17 09:47:36 -0800 |
commit | d1c14940fbe3109466a6c6dba0e4a9013017aa4d (patch) | |
tree | 4ff210fa85a1dd215d40c3cfa3d05820653212c3 /src | |
parent | 0dfc039a471d76c42610abe2c497fdf0c4785585 (diff) | |
download | voidsky-d1c14940fbe3109466a6c6dba0e4a9013017aa4d.tar.zst |
Add missing type (#1955)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/screens/Profile.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index 30c30d438..88b11b114 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -38,6 +38,10 @@ import {useQueryClient} from '@tanstack/react-query' import {useComposerControls} from '#/state/shell/composer' import {listenSoftReset} from '#/state/events' +interface SectionRef { + scrollToTop: () => void +} + type Props = NativeStackScreenProps<CommonNavigatorParams, 'Profile'> export const ProfileScreen = withAuthRequired(function ProfileScreenImpl({ route, |