eakenbor

Results 17 comments of eakenbor

@olaokoroafor, try this: ``` settings.py REST_AUTH_SERIALIZERS = { ... "TOKEN_SERIALIZER": "users.serializers.KnoxSerializer", ... } REST_AUTH_TOKEN_MODEL = "knox.models.AuthToken" REST_AUTH_TOKEN_CREATOR = "users.utils.create_knox_token" REST_FRAMEWORK = { ... "DEFAULT_AUTHENTICATION_CLASSES": ( ... "knox.auth.TokenAuthentication", ), } ```...

@geminixandroid please can you elaborate or share how the picture input modal would look like? How can the refs "pictureInput" and "fileInput" be added to the modal for the camera...

Hi @kodie and @thanhnvpk01168, did any of you find a solution to this?

@AshotN did you find a solution to this?

@dziraf please can you have a look at this?

@AshotN I managed to get around it using useRef by doing the following: ```` { setAmount(parseFloat(event.target.value)) setTimeout(() => { amountRef.current.focus() }, 0) }} disabled={type == 'SERVICE'} > ```` However, this...