Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading