From e9c82e316ed9a9c44a6818b34b2fce0fbb9121f6 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Fri, 13 Mar 2026 19:06:33 +0000 Subject: [PATCH] style: run prettier to fix formatting in useHistoryManager.ts --- packages/cli/src/ui/hooks/useHistoryManager.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/cli/src/ui/hooks/useHistoryManager.ts b/packages/cli/src/ui/hooks/useHistoryManager.ts index eaf1563b90..f5ef5680ad 100644 --- a/packages/cli/src/ui/hooks/useHistoryManager.ts +++ b/packages/cli/src/ui/hooks/useHistoryManager.ts @@ -70,7 +70,6 @@ export function useHistory({ const id = getNextMessageId(baseTimestamp); const newItem: HistoryItem = { ...itemData, id }; - setHistory((prevHistory) => { if (prevHistory.length > 0) { const lastItem = prevHistory[prevHistory.length - 1];