diff --git a/lib/chiya_web/controllers/page_html/bookmarks.html.heex b/lib/chiya_web/controllers/page_html/bookmarks.html.heex index 0a48f56..ef66ba1 100644 --- a/lib/chiya_web/controllers/page_html/bookmarks.html.heex +++ b/lib/chiya_web/controllers/page_html/bookmarks.html.heex @@ -9,13 +9,13 @@
<%= if @channel.layout == :default do %> - <.note_list_default notes={@channel.notes}/> + <.note_list_default notes={@notes}/> <% end %> <%= if @channel.layout == :gallery do %> - <.note_list_gallery notes={@channel.notes}/> + <.note_list_gallery notes={@notes}/> <% end %> <%= if @channel.layout == :microblog do %> - <.note_list_microblog notes={@channel.notes}/> + <.note_list_microblog notes={@notes}/> <% end %>