Hüseyin Bera Bulut
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. 
Sorry, if it's already authorized I don't know what the problem is. 
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...