diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-30 21:40:32 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-31 11:51:11 -0700 |
commit | 79f365b21c2551b0d4d095e6f352e1a699d81722 (patch) | |
tree | 2956049b0bdb70a502551cf0de347654f4e8c2ce /src/components | |
parent | 8b344ca9fd3f348ecb4906be4cb3d41567f22217 (diff) | |
download | voidsky-79f365b21c2551b0d4d095e6f352e1a699d81722.tar.zst |
fix(ui): small bug where on small web views the final card was not full height
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 0a112e039..18da12b22 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -433,6 +433,7 @@ function SeeMoreSuggestedProfilesCard() { return ( <Button label={_(msg`Browse more accounts on the Explore page`)} + style={[a.flex_col]} onPress={() => { navigation.navigate('SearchTab') }}> |