Skip to content

Commit 95720ef

Browse files
authored
Merge pull request #110 from 2skydev/dev
v0.0.22-re2
2 parents 71f4e97 + c3db956 commit 95720ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/src/components/LogViewer/LogViewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const LogViewer = ({ className, path, lines: _lines }: LogViewerProps) => {
2626
colors: { red, orange },
2727
} = useTheme()
2828

29-
const lines = _lines.toReversed()
29+
const lines = [..._lines].reverse()
3030

3131
const statusColors = {
3232
error: red,

0 commit comments

Comments
 (0)