no success (or fail) for action list/action card (#3272)

This commit is contained in:
Jonathan Dobson
2025-08-22 09:23:56 -04:00
committed by GitHub
parent 7b18d28463
commit b179ff684a
2 changed files with 0 additions and 4 deletions

View File

@@ -83,12 +83,10 @@ function ScrollableActionList({
{action.success ? (
<div className="flex gap-1 rounded-sm bg-slate-elevation5 px-2 py-1">
<CheckCircledIcon className="h-4 w-4 text-success" />
<span className="text-xs">Success</span>
</div>
) : (
<div className="flex gap-1 rounded-sm bg-slate-elevation5 px-2 py-1">
<CrossCircledIcon className="h-4 w-4 text-destructive" />
<span className="text-xs">Fail</span>
</div>
)}
</div>

View File

@@ -50,12 +50,10 @@ function ActionCard({ action, onClick, active, index }: Props) {
{success ? (
<div className="flex gap-1 rounded-sm bg-slate-elevation5 px-2 py-1">
<CheckCircledIcon className="h-4 w-4 text-success" />
<span className="text-xs">Success</span>
</div>
) : (
<div className="flex gap-1 rounded-sm bg-slate-elevation5 px-2 py-1">
<CrossCircledIcon className="h-4 w-4 text-destructive" />
<span className="text-xs">Fail</span>
</div>
)}
</div>