Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAlexander Lee
1,420 PointsStatus not appearing on the profile page
I'm not sure but for some reason my profile page is not showing up the statuses... followed the video pretty closely
From what I can tell in the show.html.erb...
<div class="page-header"> <h1><%= @user.full_name %></h1> </div>
The user instance is recognized but the status instance is not. but I'm not sure how to trouble shoot this..
github:
https://github.com/kkomaz/treebook/commit/2bf9a6e73375d38b1f9ea0ddc8c5e1fcbe95f6ba
2 Answers
Maciej Czuchnowski
36,441 PointsThere are a few things wrong here. First one: in the profiles controller you are rendering the show template first and THEN instantiate the @statuses variable. You have to switch the order. This probably won't fix it, but it's a start.
Ahmed Althani
iOS Development with Swift Techdegree Student 3,591 PointsI have the same issue. Did anyone found a solution to the problem ?