Skip to content

Commit 7234ac0

Browse files
committed
lint
1 parent ebdef7a commit 7234ac0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/apps/review/src/pages/reviews/components/AiReviewViewer/AiReviewViewer.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ const AiReviewViewer: FC = () => {
3636
challengeInfo,
3737
}: ChallengeDetailContextModel = useChallengeDetailsContext()
3838
const navigate = useAppNavigate()
39-
const workflowRunIsFailed = [AiWorkflowRunStatusEnum.FAILURE].includes(workflowRun?.status as AiWorkflowRunStatusEnum);
39+
const workflowRunIsFailed = [
40+
AiWorkflowRunStatusEnum.FAILURE,
41+
].includes(workflowRun?.status as AiWorkflowRunStatusEnum)
4042

4143
const tabItems: SelectOption[] = [
4244
{

0 commit comments

Comments
 (0)