From e0339993aeae97e0ce77ffa430214b64007b9f6f Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Fri, 18 Apr 2025 10:53:16 -0400 Subject: Initial auto-fixing of linting errors. - This is the result of runing `npm lint -- -fix` --- packages/cli/src/ui/components/HistoryDisplay.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'packages/cli/src/ui/components/HistoryDisplay.tsx') diff --git a/packages/cli/src/ui/components/HistoryDisplay.tsx b/packages/cli/src/ui/components/HistoryDisplay.tsx index 285a6e30..fe0bf4c1 100644 --- a/packages/cli/src/ui/components/HistoryDisplay.tsx +++ b/packages/cli/src/ui/components/HistoryDisplay.tsx @@ -17,9 +17,9 @@ interface HistoryDisplayProps { const HistoryDisplay: React.FC = ({ history, onSubmit, -}) => { +}) => // No grouping logic needed here anymore - return ( + ( {history.map((item) => ( @@ -36,7 +36,7 @@ const HistoryDisplay: React.FC = ({ ))} - ); -}; + ) +; export default HistoryDisplay; -- cgit v1.2.3