Skip to content

Commit ee9dbbb

Browse files
committed
remove logs
1 parent 0426736 commit ee9dbbb

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

features/onboarding/hooks/useCreateOrUpdateProfileInfo.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export function useCreateOrUpdateProfileInfo() {
4343
errorMessage: translate("userProfile.errors.usernameAlphanumeric"),
4444
};
4545
}
46-
logger.debug("[OnboardingContactCardScreen]1 ");
4746

4847
if (profile.username.length < 3 || profile.username.length > 30) {
4948
setErrorMessage(translate("userProfile.errors.usernameLength"));
@@ -58,11 +57,9 @@ export function useCreateOrUpdateProfileInfo() {
5857
}
5958

6059
setLoading(true);
61-
logger.debug("[OnboardingContactCardScreen]2 ");
6260

6361
try {
6462
await checkUsernameValid(address, profile.username);
65-
logger.debug("[OnboardingContactCardScreen]3 ");
6663
} catch (e: any) {
6764
logger.error(e, { context: "UserProfile: Checking username valid" });
6865
setLoading(false);

0 commit comments

Comments
 (0)