Vysakh Sreenivasan
Vysakh Sreenivasan
@HashNuke I've followed the `docs`. And I get an error that some how I couldn't get past :disappointed: During this step ``` TASK: [HashNuke.elixir-stack | upgrade app] *********************************** ESTABLISH CONNECTION...
@zelief Thank you for the reply. In component we can't use like this right? Typically these are form and we only send the params on submission. We can pass the...
@gkrinc Facing the same issue :disappointed:
@gkrinc Currently I could do (which is not straight forward) ``` jsx ``` ``` js this.refs.amount.refs.input.setNativeProps({text: "1200"}) ```
@rlau1115 I'm wondering if you found a fix or work around, facing the same issue :disappointed:
@rlau1115 Ah! :( thank you for the quick reply :smiley:
@rochacbruno Hey! Thank you! ❤️ Sounds good 👍
`followees_ids = current_user.followees(User).pluck(:id)` Looks like the current_user has not followed anyone, there should be a small check, have this method in your controller and remove that line ``` ruby def...
That is because the current_user is not following anyone. When a user first signs up he/she is not following anyone, so `current_user.followees(User)` is empty, subsequently your news feed is empty....
Go to `rails console` and check these, temme what output you get ``` ruby user = User.first user.followees(User) ``` Also, could you push your code in github so that I...