Henrik

Results 17 comments of Henrik

This is because this library is only checking if this **could be** a valid email. It checks if the format is right and returns true if it is. What you...

I don't know right now. You could take a look at this API https://verify-email.org/

> since **useBottomSheetDynamicSnapPoints** will be removed on next release, this is my updated hook and fixed issue with device which has inset.bottom, thanks to @MiguelAraCo : > > ``` >...

@janicduplessis did you manage to fix it? If yes, could you share how you did it?

@vasafix did you manage to fix it? If yes, could you share how you did it?

Solved with updating all dependencies including React Native and React Native Vision Camera. Versions: "react-native": "0.70.6", "react-native-vision-camera": "^2.15.2" Now it is working. Don't know exactly what the problem was/is

@thomasbritton Try following: ``` ... onDragStart={({ active }) => { if (active) { setTimeout(() => setActiveId(active.id), 0) } }} ... ```

@eadwinCode That's strange. I still have the same problem. How did you test this? I just called the refresh api point, but it always worked (no matter if the refresh...

Sure: ``` NINJA_JWT = { "ACCESS_TOKEN_LIFETIME": timedelta(seconds=30), "REFRESH_TOKEN_LIFETIME": timedelta(minutes=1), } ```

```py # api.py from ninja_extra import NinjaExtraAPI from ninja_jwt.controller import NinjaJWTDefaultController from calendar_.api import router as week_router from user.api import router as user_router api = NinjaExtraAPI() api.register_controllers(NinjaJWTDefaultController) api.add_router("/calendar/", week_router) api.add_router("/user/",...