Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
Merge branch 'feat/inner_chat_message' into develop
Browse files Browse the repository at this point in the history
AruSeito committed Apr 16, 2024

Unverified

This user has not yet uploaded their public signing key.
2 parents 069a77c + 789a1a4 commit 49f133f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -164,14 +164,14 @@ export const useGetInfoByStatus = () => {
(status: MESSAGE_STATUS, runRequestType: RUN_REQUEST_TYPE | undefined) => {
switch (runRequestType) {
case RUN_REQUEST_TYPE._SYS_READ_FILE: {
return getReadFileInfoByStatus(MESSAGE_STATUS.ANALYZE_PENDING)
return getReadFileInfoByStatus(status)
}
case RUN_REQUEST_TYPE._SYS_GET_CURRENT_TIME_IN_UTC: {
return getTimeInfoByStatue(MESSAGE_STATUS.ANALYZE_PENDING)
return getTimeInfoByStatue(status)
}
default:
case RUN_REQUEST_TYPE._SYS_RUN_PYTHON_CODE: {
return getRunPythonInfoByStatus(MESSAGE_STATUS.ANALYZE_PENDING)
return getRunPythonInfoByStatus(status)
}
}
},

0 comments on commit 49f133f

Please sign in to comment.