diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-09-09 18:38:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-09 08:38:21 -0700 |
commit | 53e43a957c2e0f3f020c34653cbf5029ec6dd8bb (patch) | |
tree | 71f93d1c41d64109e600bbe91056b4b4e07c83e1 /src/screens/Profile/Header/index.tsx | |
parent | bb30b592d787870adc4b4d3e5029d8dc3125f7e7 (diff) | |
download | voidsky-53e43a957c2e0f3f020c34653cbf5029ec6dd8bb.tar.zst |
run `yarn lint --fix` (#9013)
Diffstat (limited to 'src/screens/Profile/Header/index.tsx')
-rw-r--r-- | src/screens/Profile/Header/index.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/screens/Profile/Header/index.tsx b/src/screens/Profile/Header/index.tsx index 7e4b9bb31..1158a8aa5 100644 --- a/src/screens/Profile/Header/index.tsx +++ b/src/screens/Profile/Header/index.tsx @@ -1,5 +1,5 @@ import React, {memo, useState} from 'react' -import {LayoutChangeEvent, StyleSheet, View} from 'react-native' +import {type LayoutChangeEvent, StyleSheet, View} from 'react-native' import Animated, { runOnJS, useAnimatedReaction, @@ -8,10 +8,10 @@ import Animated, { } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' import { - AppBskyActorDefs, - AppBskyLabelerDefs, - ModerationOpts, - RichText as RichTextAPI, + type AppBskyActorDefs, + type AppBskyLabelerDefs, + type ModerationOpts, + type RichText as RichTextAPI, } from '@atproto/api' import {useIsFocused} from '@react-navigation/native' |