diff --git a/frontend/src/lib/components/runs/JobStatusIcon.svelte b/frontend/src/lib/components/runs/JobStatusIcon.svelte index 0a99530609..5f93f8b6dd 100644 --- a/frontend/src/lib/components/runs/JobStatusIcon.svelte +++ b/frontend/src/lib/components/runs/JobStatusIcon.svelte @@ -18,43 +18,28 @@ job: Job isExternal?: boolean roundedFull?: boolean - /** Icon size in px, and the padding around it. Defaults are the runs page's; the chat's - * tool rows ask for a smaller one, since a 30px badge would set the height of a row of - * 11px text. */ - size?: number - badgeClass?: string } - let { - job, - isExternal = false, - roundedFull = false, - size = 14, - badgeClass = undefined - }: Props = $props() + let { job, isExternal = false, roundedFull = false }: Props = $props()