diff --git a/apps/desktop/src/app/contrib/wiring.tsx b/apps/desktop/src/app/contrib/wiring.tsx index 356a38cd77..13f54d59e2 100644 --- a/apps/desktop/src/app/contrib/wiring.tsx +++ b/apps/desktop/src/app/contrib/wiring.tsx @@ -248,13 +248,8 @@ export function ContribWiring({ children }: { children: ReactNode }) { const { connectionRef, gateway, gatewayRef, requestGateway } = useGatewayRequest() - const { - loadMoreMessagingForPlatform, - loadMoreSessions, - refreshCronJobs, - refreshMessagingSessions, - refreshSessions - } = useSessionListActions({ profileScope }) + const { loadMoreMessagingForPlatform, loadMoreSessions, refreshCronJobs, refreshMessagingSessions, refreshSessions } = + useSessionListActions({ profileScope }) const updateActiveSessionRuntimeInfo = useCallback( (info: { branch?: string; cwd?: string }) => { diff --git a/apps/desktop/src/app/settings/plugins-settings.test.tsx b/apps/desktop/src/app/settings/plugins-settings.test.tsx index ad64088291..d4d1651e01 100644 --- a/apps/desktop/src/app/settings/plugins-settings.test.tsx +++ b/apps/desktop/src/app/settings/plugins-settings.test.tsx @@ -74,6 +74,7 @@ describe('PluginsSettings', () => { ...legacyRow, description: 'A second plugin category with the same legacy name' } + const consoleError = vi.spyOn(console, 'error').mockImplementation(() => undefined) $agentPlugins.set([legacyRow, sibling])