buncis

Results 36 comments of buncis

I also got the error with new project npx create-react-app and installing plotly adding the memory flag to start scripts fixing the issue ``` "start": "react-scripts --max_old_space_size=4096 start", ``` my...

I'm using `rails 5.2.2` and `ruby 2.5.3` the problem seems persist my whole gemfile ``` source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.5.3' gem 'rails', '~> 5.2.2' gem 'pg',...

this is turbolinks related, try to disable turbolinks and you'll be fine, or load the gmaps in head/allpages.

but react-navigation itself has many problems, see this one https://github.com/react-community/react-navigation/issues/2476 I think it also need to mentioned so people have another library to look at. like https://github.com/aksonov/react-native-router-flux or https://github.com/wix/react-native-navigation

I think its better if you could create a pull request. #400 have better approach than removing.

is this a solution when the react component not attached/loaded in the page that reloaded using turbo?

ah I see because the slidovers.js is neglected in #102

@gohyifan check this https://pragmaticstudio.com/tutorials/rails-session-cookies-for-api-authentication as for localstorage its kinda dangerous because its vulnerable to XSS attack

@ChrisCPO Please close this issue, if the problems is solved. to remove the default devise routes just skip it `devise_for :users, skip: [:sessions, :registrations, :passwords]` see this https://stackoverflow.com/questions/6734323/how-do-i-remove-the-devise-route-to-sign-up and this...

as per rails/devise convention you should use delete method you could set it with get though, anything