Hüseyin Bera Bulut

Results 7 comments of Hüseyin Bera Bulut

What do you mean? Could you give more details, share a gif or screenshot?

Have you successfully deployed service application? If you have done that please share your console's SS as well.

I think that's related to your Firebase auth service. Check if you can see your mail in Firebase Authentication/Users. ![image](https://user-images.githubusercontent.com/45367283/142408513-8ab1f93d-88bc-4c06-9218-b07193143ad4.png)

Sorry, if it's already authorized I don't know what the problem is. ![image](https://user-images.githubusercontent.com/45367283/142410296-9c5e6437-ec08-4694-add4-6ac396c70e9e.png)

Try cleaning LocalStorage

This is happening because validator is trying to run `gte=2` validation on a nil value. Adding `omitempty` before `gte=2` should fix it. ```go type SampleWithPointer struct { Type string `json:"type"...

@zemzale I think adding this code block fixes the validation. But we need to add this block to every validation that panics with nil values. ```go func isGte(fl FieldLevel) bool...