Skip to content

Commit

Permalink
Update control-station/src/services/PodSocketClient.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Taesung Hwang <[email protected]>
  • Loading branch information
vrushang1234 and taesungh authored Jun 1, 2024
1 parent 1777ed5 commit 02ae99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion control-station/src/services/PodSocketClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class PodSocketClient {
this.setPodData((d) => ({
...d,
state: newState,
messages: d.messages ? [...d.messages, newMessage] : [newMessage],
messages: [...d.messages, newMessage],
}));
}
}
Expand Down

0 comments on commit 02ae99c

Please sign in to comment.