Skip to content

Commit d09060d

Browse files
jaags-devritwik-g
andauthored
[Fix] Empty logs in unified notification (#1205)
fixed empty logs in unified notification Co-authored-by: Ritwik G <100672805+ritwik-g@users.noreply.github.com>
1 parent 9254bfd commit d09060d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/store/socket-logs-store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const useSocketLogsStore = create((setState, getState) => ({
2323
state: msg?.state,
2424
prompt_key: msg?.component?.prompt_key,
2525
doc_name: msg?.component?.doc_name,
26-
message: msg?.message,
26+
message: msg?.message || msg?.log,
2727
cost_value: msg?.cost,
2828
iteration: msg?.iteration,
2929
iteration_total: msg?.iteration_total,

0 commit comments

Comments
 (0)