Skip to content

Commit

Permalink
Merge pull request stakwork#2632 from stakwork/feature/enable-logs
Browse files Browse the repository at this point in the history
feat: enabled logs
  • Loading branch information
Rassl authored Jan 28, 2025
2 parents ea4fa52 + 588956a commit 4be993e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/App/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ export const App = () => {
])

useEffect(() => {
if (!runningProjectId || true) {
if (!runningProjectId) {
return
}

Expand All @@ -300,6 +300,8 @@ export const App = () => {
ws.onmessage = (event) => {
const data = JSON.parse(event.data)

console.log(data)

if (data.type === 'ping') {
return
}
Expand Down

0 comments on commit 4be993e

Please sign in to comment.