Skip to content

Commit

Permalink
fix:调整上下文日志顺序
Browse files Browse the repository at this point in the history
  • Loading branch information
KT-core committed Oct 18, 2024
1 parent 60862e2 commit 24e581b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const ContextModal = ({ modalVisible, closeModal, logParams }) => {
.then((res) => {
const back = res?.back ?? []
const front = res?.front ?? []
setContext(back.concat(front))
setContext(front.concat(back))
})
.catch(() => {
setContext([])
Expand Down

0 comments on commit 24e581b

Please sign in to comment.