Keith Grennan
Keith Grennan
@nickgillian your forum site appears to be down. I'm also interested in running GRT on iOS. Thanks!
My solution was to always just use the token. For my purposes it has enough info even for account creation.. ``` def authenticate_token(self, decoded_token): return UserRecord( dict( localId=decoded_token["uid"], display_name=decoded_token.get("name"), email=decoded_token.get("email"),...
I ran into this too. I had a form like.. ``` ``` The weird thing is that it mostly worked, but I got the above error in the console. The...
@ezet @jlariza my workaround was simply to ignore the `payment_method.detached` event via the `DJSTRIPE_WEBHOOK_EVENT_CALLBACK` setting. The `customer.source.deleted` handler handles the detach properly, as far as I can tell, so no...
perhaps beforeEvent returning an error cancels the transition?
I am seeing this same issue using react-autosuggest with redux-form. Here's a minimal example (minus the redux store/provider boilerplate): ``` const SuggestComponent = ({ input }) => {}} onSuggestionsClearRequested={() =>...
Has anyone had any luck with this? Just ran into it 3 years later.
Workaround is to add `convert_choices_to_enum = False` to the meta class of both the `ObjectType` and `Mutation` classes for that model type.
i fixed this with: ``` brew install opencc ln -s /opt/homebrew/lib/libopencc.dylib /opt/homebrew/lib/libopencc.so.1 ``` (you just need to symlink it to one of the paths that it is searching for) now...
The MUI [Select](https://material-ui-next.com/api/select/) component does not support helperText, so the Select wrapper in this package is broken in this regard. However [TextField](https://material-ui-next.com/api/text-field/) has a ['select mode'](https://github.com/mui-org/material-ui/pull/8274) that renders a Select...