Skip to content

Commit

Permalink
Build Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SenexCrenshaw committed Oct 11, 2023
1 parent 3b94d6c commit 5de159a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion streammasterwebui/features/logViewer/LogViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ const LogViewer = () => {
setLastLogId(uniqueData[uniqueData.length - 1].id);
}
})
.catch((error) => {
// @ts-ignore
.catch((error: any) => {
console.log(error);
});
}, [dataSource, lastLogId]);
Expand Down

0 comments on commit 5de159a

Please sign in to comment.