Skip to content

Commit

Permalink
Merge pull request #109 from 2skydev/fix/toReversed-to-reverse
Browse files Browse the repository at this point in the history
최신 문법 타입 오류 수정
  • Loading branch information
2skydev authored Oct 9, 2023
2 parents 84c51f9 + cc7d3f4 commit c3db956
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 c3db956

Please sign in to comment.