Skip to content

Commit

Permalink
Reduce page size until pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkonidas committed Jun 19, 2024
1 parent e1f62d7 commit df1d40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plexus_web/live/admin/app_live/index.ex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ defmodule PlexusWeb.Admin.AppLive.Index do
if connected?(socket), do: Apps.subscribe()

{entries, page_metadata} =
[scores: true, order_by: :name, page_size: 9999]
[scores: true, order_by: :name, page_size: 10]
|> Apps.list_apps()
|> Map.pop(:entries)

Expand Down

0 comments on commit df1d40d

Please sign in to comment.