From 1245433edae5e2a67f7afe8f609f3b62a9c98e9c Mon Sep 17 00:00:00 2001 From: Jean Brito Date: Thu, 9 Jul 2026 12:00:29 -0300 Subject: [PATCH 1/2] fix: type onDragOver event param in WorkspaceTab --- src/ui/components/TabBar/WorkspaceTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/components/TabBar/WorkspaceTab.tsx b/src/ui/components/TabBar/WorkspaceTab.tsx index 947ae52f7a..bc4d224ff9 100644 --- a/src/ui/components/TabBar/WorkspaceTab.tsx +++ b/src/ui/components/TabBar/WorkspaceTab.tsx @@ -124,7 +124,7 @@ const WorkspaceTab = ({ onKeyDown={handleKeyDown} onFocus={handleFocus} onBlur={handleBlur} - onDragOver={(event) => event.preventDefault()} + onDragOver={(event: DragEvent) => event.preventDefault()} onDragStart={onDragStart} onDragEnd={onDragEnd} onDragEnter={onDragEnter} From 73baf556ec0af475e5bfd4316da48b3df4849e28 Mon Sep 17 00:00:00 2001 From: Jean Brito Date: Thu, 9 Jul 2026 12:02:52 -0300 Subject: [PATCH 2/2] test: drop spec case for removed DOWNLOADS_BACK_BUTTON_CLICKED action --- src/ui/reducers/__tests__/stateGroups.spec.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/ui/reducers/__tests__/stateGroups.spec.ts b/src/ui/reducers/__tests__/stateGroups.spec.ts index fe2a76cbc1..06e357f869 100644 --- a/src/ui/reducers/__tests__/stateGroups.spec.ts +++ b/src/ui/reducers/__tests__/stateGroups.spec.ts @@ -109,13 +109,6 @@ describe('currentView reducer', () => { } as any) ).toEqual({ url: 'https://side.example' }); - expect( - currentView({ url: 'https://abc' }, { - type: uiActions.DOWNLOADS_BACK_BUTTON_CLICKED, - payload: 'https://downloads.example', - } as any) - ).toEqual({ url: 'https://downloads.example' }); - expect( currentView('add-new-server', { type: uiActions.MENU_BAR_ADD_NEW_SERVER_CLICKED,