Skip to content

Commit 838948a

Browse files
committed
fix(seer): Update no-repo warning to error severity
Change tooltip text to clarify that Seer Autofix only works (not just works best) on projects with connected repos. Update the warning icon variant from warning to error to better reflect the severity. Co-Authored-By: Claude Opus 4.6 <noreply@example.com> Agent transcript: https://claudescope.sentry.dev/share/-zUO5vF93CLRRxrOmr5BZ7SQ0CG7Pa6L5t6yvFM182w
1 parent 8c1e679 commit 838948a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

static/gsApp/views/seerAutomation/components/projectTable/seerProjectTableRow.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,12 @@ export function SeerProjectTableRow({
176176
{autofixSettings ? (
177177
autofixSettings.reposCount === 0 ? (
178178
<Tooltip
179-
title={t('Seer works best on projects with at least one connected repo.')}
179+
title={t(
180+
'Seer Autofix only works on projects with at least one connected repo.'
181+
)}
180182
>
181183
<Flex align="center" gap="sm">
182-
<IconWarning variant="warning" />
184+
<IconWarning variant="error" />
183185
<Text tabular>{0}</Text>
184186
</Flex>
185187
</Tooltip>

0 commit comments

Comments
 (0)