Skip to content

Commit

Permalink
fix(replay): banner logic was in wrong spot (#82942)
Browse files Browse the repository at this point in the history
  • Loading branch information
michellewzhang authored Jan 6, 2025
1 parent 9d6c64b commit a6680b4
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions static/app/views/replays/list/listContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,6 @@ export default function ListContent() {
<ReplaysFilters />
<ReplaysSearch />
</FiltersContainer>
{allMobileProj && mobileBetaOrg ? (
<StyledAlert icon={<IconInfo />} showIcon>
{tct(
`[strong:Mobile Replay is now generally available.] Orgs that participated in the beta will have a two month grace period of unlimited usage until March 6. After that, you will be billed for [link:additional replays not included in your plan].`,
{
strong: <strong />,
link: (
<ExternalLink href="https://docs.sentry.io/pricing/#replays-pricing" />
),
}
)}
</StyledAlert>
) : null}
<ReplayOnboardingPanel />
</Fragment>
);
Expand Down Expand Up @@ -110,6 +97,19 @@ export default function ListContent() {
)}
</SearchWrapper>
</FiltersContainer>
{allMobileProj && mobileBetaOrg ? (
<StyledAlert icon={<IconInfo />} showIcon>
{tct(
`[strong:Mobile Replay is now generally available.] Orgs that participated in the beta will have a two month grace period of unlimited usage until March 6. After that, you will be billed for [link:additional replays not included in your plan].`,
{
strong: <strong />,
link: (
<ExternalLink href="https://docs.sentry.io/pricing/#replays-pricing" />
),
}
)}
</StyledAlert>
) : null}
{widgetIsOpen && !allMobileProj ? <DeadRageSelectorCards /> : null}
<ReplaysList />
</Fragment>
Expand Down

0 comments on commit a6680b4

Please sign in to comment.