mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-14 23:31:13 -07:00
Initial auto-fixing of linting errors.
- This is the result of runing `npm lint -- -fix`
This commit is contained in:
committed by
N. Taylor Mullen
parent
cb30351403
commit
e0339993ae
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user