summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/components/HistoryDisplay.tsx
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-18 10:53:16 -0400
committerN. Taylor Mullen <[email protected]>2025-04-18 12:41:02 -0400
commite0339993aeae97e0ce77ffa430214b64007b9f6f (patch)
treed48320c7cc66076a42b42de8cee7ff9985474fdc /packages/cli/src/ui/components/HistoryDisplay.tsx
parentcb303514035440b1631964cad5093a4c80cd3e43 (diff)
Initial auto-fixing of linting errors.
- This is the result of runing `npm lint -- -fix`
Diffstat (limited to 'packages/cli/src/ui/components/HistoryDisplay.tsx')
-rw-r--r--packages/cli/src/ui/components/HistoryDisplay.tsx8
1 files changed, 4 insertions, 4 deletions
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<HistoryDisplayProps> = ({
history,
onSubmit,
-}) => {
+}) =>
// No grouping logic needed here anymore
- return (
+ (
<Box flexDirection="column">
{history.map((item) => (
<Box key={item.id} marginBottom={1}>
@@ -36,7 +36,7 @@ const HistoryDisplay: React.FC<HistoryDisplayProps> = ({
</Box>
))}
</Box>
- );
-};
+ )
+;
export default HistoryDisplay;