We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebdef7a commit 7234ac0Copy full SHA for 7234ac0
src/apps/review/src/pages/reviews/components/AiReviewViewer/AiReviewViewer.tsx
@@ -36,7 +36,9 @@ const AiReviewViewer: FC = () => {
36
challengeInfo,
37
}: ChallengeDetailContextModel = useChallengeDetailsContext()
38
const navigate = useAppNavigate()
39
- const workflowRunIsFailed = [AiWorkflowRunStatusEnum.FAILURE].includes(workflowRun?.status as AiWorkflowRunStatusEnum);
+ const workflowRunIsFailed = [
40
+ AiWorkflowRunStatusEnum.FAILURE,
41
+ ].includes(workflowRun?.status as AiWorkflowRunStatusEnum)
42
43
const tabItems: SelectOption[] = [
44
{
0 commit comments