moved return statement to correct place

This commit is contained in:
Abhinav-grd 2021-02-22 17:02:01 +05:30
parent a9e6c8a938
commit e6773fad68

View file

@ -33,6 +33,6 @@ export function ErrorBannerMessage(bannerErrorCode) {
break;
default:
errorMessage = `Unknown Error Code - ${bannerErrorCode} Encountered`;
return errorMessage;
}
return errorMessage;
}