diff --git a/frontend/src/lib/components/runs/RunRow.svelte b/frontend/src/lib/components/runs/RunRow.svelte index e4c264b7b5..7e147103e7 100644 --- a/frontend/src/lib/components/runs/RunRow.svelte +++ b/frontend/src/lib/components/runs/RunRow.svelte @@ -37,7 +37,6 @@ containsLabel?: boolean showTag?: boolean activeLabel: string | null - selectionMode?: boolean } let { @@ -46,8 +45,7 @@ containerWidth = 0, containsLabel = false, showTag = true, - activeLabel, - selectionMode = false + activeLabel }: Props = $props() let scheduleEditor: ScheduleEditor | undefined = $state(undefined) @@ -66,32 +64,19 @@