Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ export function UptimeDetectorDetails({detector, project}: UptimeDetectorDetails
<DetailLayout.Sidebar>
<Section title={t('Detect')}>
{tn(
'%s consecutive failed check.',
'%s failed check.',
'%s consecutive failed checks.',
detector.config.downtimeThreshold
)}
</Section>
<Section title={t('Resolve')}>
{tn(
'%s consecutive successful check.',
'%s successful check.',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Inconsistent Pluralization in Check Messages

The pluralization for "failed check" and "successful check" messages is inconsistent. Singular forms now omit "consecutive" while plural forms retain it, leading to confusing messaging about check thresholds.

Fix in Cursor Fix in Web

'%s consecutive successful checks.',
detector.config.recoveryThreshold
)}
Expand Down
Loading