Skip to content

Commit

Permalink
fix: add strict checking
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjs committed Jan 22, 2025
1 parent 4d17f25 commit f0f4958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/onboardingExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const validateOnboardingExtensionUpdateRequest = async (
};
}

if(extensionRequest.state != REQUEST_STATE.PENDING){
if(extensionRequest.state !== REQUEST_STATE.PENDING){
await addLog(logType.PENDING_REQUEST_CAN_BE_UPDATED,
{ state: extensionRequest.state },
{ message:PENDING_REQUEST_UPDATED }
Expand Down

0 comments on commit f0f4958

Please sign in to comment.