diff --git a/app/views/content/index.html.erb b/app/views/content/index.html.erb index b36c2aeb..a7af251b 100644 --- a/app/views/content/index.html.erb +++ b/app/views/content/index.html.erb @@ -5,7 +5,11 @@
- <%= image_tag current_user.image_url, class: 'h-24 w-24 rounded-full ring-4 ring-white sm:h-32 sm:w-32' %> + <% if @universe_scope %> + <%= image_tag @universe_scope.random_image_including_private, class: 'h-24 w-24 rounded-full ring-4 ring-purple-800 sm:h-32 sm:w-32' %> + <% else %> + <%= image_tag current_user.image_url, class: 'h-24 w-24 rounded-full ring-4 ring-green-800 sm:h-32 sm:w-32' %> + <% end %>