This commit is contained in:
Eric Bailey
2025-06-10 10:45:22 -05:00
parent 094a877403
commit 48e22c2adb
3 changed files with 20 additions and 4 deletions
+7 -1
View File
@@ -18,7 +18,13 @@ import {useSession} from '#/state/session'
import * as userActionHistory from '#/state/userActionHistory'
import {type SeenPost} from '#/state/userActionHistory'
import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture'
import {atoms as a, useBreakpoints, useTheme, type ViewStyleProp, web} from '#/alf'
import {
atoms as a,
useBreakpoints,
useTheme,
type ViewStyleProp,
web,
} from '#/alf'
import {Button} from '#/components/Button'
import * as FeedCard from '#/components/FeedCard'
import {ArrowRight_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow'
+1 -1
View File
@@ -1,6 +1,6 @@
import React from 'react'
import {type ContextType, type ItemContextType} from '#/components/Menu/types'
import {type ContextType, type ItemContextType} from '#/components/Menu/types'
export const Context = React.createContext<ContextType | null>(null)
+12 -2
View File
@@ -1,6 +1,16 @@
import React, {type ComponentProps} from 'react'
import {Pressable, type StyleProp, StyleSheet, View, type ViewStyle} from 'react-native'
import {type AppBskyActorDefs, type ModerationCause, type ModerationUI} from '@atproto/api'
import {
Pressable,
type StyleProp,
StyleSheet,
View,
type ViewStyle,
} from 'react-native'
import {
type AppBskyActorDefs,
type ModerationCause,
type ModerationUI,
} from '@atproto/api'
import {msg, Trans} from '@lingui/macro'
import {useLingui} from '@lingui/react'
import {useQueryClient} from '@tanstack/react-query'