From ed4d3ba26534944f6336ef6a2e249ebec873cc16 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Tue, 29 Jul 2025 07:45:47 +0200 Subject: [PATCH] refactor: remove toggle link context menu action --- .../features/rundown/rundown-event/RundownEvent.tsx | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/apps/client/src/features/rundown/rundown-event/RundownEvent.tsx b/apps/client/src/features/rundown/rundown-event/RundownEvent.tsx index f519783ab..a7268c15a 100644 --- a/apps/client/src/features/rundown/rundown-event/RundownEvent.tsx +++ b/apps/client/src/features/rundown/rundown-event/RundownEvent.tsx @@ -135,16 +135,6 @@ export default function RundownEvent({ { type: 'item', label: 'Delete', icon: IoTrash, onClick: () => actionHandler('delete') }, ] : [ - { - type: 'item', - label: 'Toggle link to previous', - icon: IoLink, - onClick: () => - actionHandler('update', { - field: 'linkStart', - value: linkStart, - }), - }, { type: 'item', label: flag ? 'Remove flag' : 'Add flag',