• fix: interview create returns HTTP 201, frontend only accepted 200

    txai-dev released this 2026-07-03 15:52:35 +08:00 | 21 commits to master since this release

    NestJS POST 默认返回 201 Created,前端 startInterview() 和
    sendAnswer() 只判断 statusCode === 200 导致成功创建也落入
    else 分支显示创建面试失败。改为 >= 200 && < 300。

    Downloads