diff options
author | Eric Bailey <git@esb.lol> | 2024-06-14 14:24:04 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-14 14:24:04 -0500 |
commit | 5751014117ff87a0b5188841b468095f00305ed5 (patch) | |
tree | ea34cf6f99797da7dc05a561e8e5ad4fb753f11b /src/screens/Profile/Header/ProfileHeaderLabeler.tsx | |
parent | 51a3e601324b4032257e5e932a8eedc39f539975 (diff) | |
download | voidsky-5751014117ff87a0b5188841b468095f00305ed5.tar.zst |
Feed source card (#4512)
* Pass event through click handlers * Add FeedCard, use in Feeds screen * Tweak space * Don't contrain rt height * Tweak space * Fix type errors, don't pass event to fns that don't expect it * Show unresolved RT prior to facet resolution
Diffstat (limited to 'src/screens/Profile/Header/ProfileHeaderLabeler.tsx')
-rw-r--r-- | src/screens/Profile/Header/ProfileHeaderLabeler.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screens/Profile/Header/ProfileHeaderLabeler.tsx b/src/screens/Profile/Header/ProfileHeaderLabeler.tsx index 64bf71027..6588eb2e1 100644 --- a/src/screens/Profile/Header/ProfileHeaderLabeler.tsx +++ b/src/screens/Profile/Header/ProfileHeaderLabeler.tsx @@ -333,7 +333,7 @@ function CantSubscribePrompt({ </Trans> </Prompt.DescriptionText> <Prompt.Actions> - <Prompt.Action onPress={control.close} cta={_(msg`OK`)} /> + <Prompt.Action onPress={() => control.close()} cta={_(msg`OK`)} /> </Prompt.Actions> </Prompt.Outer> ) |