Skip to content

Commit

Permalink
[C-4034] Fix feed tip tile (#7886)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers authored Mar 20, 2024
1 parent e4982a3 commit 38e3a87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/web/src/components/lineup/LineupProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ class LineupProvider extends PureComponent<CombinedProps, LineupProviderState> {
threshold={loadMoreThreshold}
element='ol'
>
<FeedTipTile />
{showFeedTipTile ? <FeedTipTile /> : null}
{tiles.map((tile, index) => (
<li key={index}>{tile}</li>
))}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}

.cosignImageWrapper {
height: 100%
height: 100%;
}

.title {
Expand Down

0 comments on commit 38e3a87

Please sign in to comment.