Skip to content

Commit 6e307dd

Browse files
authored
fix(aci): Remove 'sentry created' alert icon/text (#102046)
1 parent 15014a4 commit 6e307dd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

static/app/components/workflowEngine/gridCell/automationTitleCell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export default function AutomationTitleCell({automation, openInNewTab}: Props) {
2424
automation.id,
2525
automationsLinkPrefix
2626
)}
27-
systemCreated={!automation.createdBy}
2827
disabled={!automation.enabled}
2928
warning={warning}
3029
openInNewTab={openInNewTab}

static/app/views/automations/detail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ function UserDisplayName({id}: {id: string | undefined}) {
278278
id: id ? Number(id) : undefined,
279279
});
280280
if (!id) {
281-
return t('Sentry');
281+
return '—';
282282
}
283283
if (isPending) {
284284
return <Placeholder height="20px" />;

0 commit comments

Comments
 (0)