Skip to content

Commit

Permalink
fix: logs being in reverse order
Browse files Browse the repository at this point in the history
  • Loading branch information
Vali-98 committed Oct 13, 2024
1 parent 7287200 commit 08cc344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Logs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Logs = () => {

const handleExportLogs = () => {
if (!logs) return
const data = logs.join('\n')
const data = logs.toReversed().join('\n')
saveStringToDownload(data, 'logs.txt', 'utf8')
.then(() => {
Logger.log('Logs Downloaded!', true)
Expand Down

0 comments on commit 08cc344

Please sign in to comment.