Skip to content

Commit b3d2ce7

Browse files
committed
Fix n.4 to announcements not rendering on staging site
1 parent 19cf552 commit b3d2ce7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/pages/LandingPage/LandingPage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ const LandingPage: React.FC = () => {
104104
</PageTitle>
105105
<DashboardWrapper>
106106

107+
<div style={{ width: '100%', zIndex: 1000 }}>
107108
{!announcementsLoading &&
108109
visibleAnnouncements.length > 0 &&
109110
visibleAnnouncements.map((announcement: AnnouncementAPI) => (
@@ -136,7 +137,7 @@ const LandingPage: React.FC = () => {
136137
</button>
137138
</div>
138139
))}
139-
140+
</div>
140141

141142

142143
<DashboardText>

0 commit comments

Comments
 (0)