Skip to content

Commit

Permalink
Merge pull request #110 from 2skydev/dev
Browse files Browse the repository at this point in the history
v0.0.22-re2
  • Loading branch information
2skydev committed Oct 9, 2023
2 parents 71f4e97 + c3db956 commit 95720ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/components/LogViewer/LogViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const LogViewer = ({ className, path, lines: _lines }: LogViewerProps) => {
colors: { red, orange },
} = useTheme()

const lines = _lines.toReversed()
const lines = [..._lines].reverse()

const statusColors = {
error: red,
Expand Down

0 comments on commit 95720ef

Please sign in to comment.