Skip to content

Commit

Permalink
ADM-1009 [frontend]: fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-yinyuan committed Sep 19, 2024
1 parent 6d70dd6 commit 4e730f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const useGetSourceControlConfigurationBranchEffect = (): IUseGetSourceCon
const code: number = response.code as number;
if (code >= 400 && code < 500) {
setStepFailedStatus(MetricsDataFailStatus.AllFailed4xx);
} else if (response.code == 200) {
} else if (response.code === 200) {
setIsGetBranch(true);
dispatch(
updateSourceControlVerifiedResponse({
Expand Down

0 comments on commit 4e730f9

Please sign in to comment.