Skip to content

Commit 6ae4e33

Browse files
committed
fix(entries-table): increase skeleton rows from 10 to 15
Extend the loading state placeholder rows in the leaderboard entries table from 10 to 15 to better match anticipated data length and improve user experience during data fetch.
1 parent 3278d16 commit 6ae4e33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/leaderboard-page/entries-table.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</thead>
88
<tbody>
99
{{#if @isLoadingEntries}}
10-
{{#each (range 1 11) as |rank|}}
10+
{{#each (range 1 16) as |rank|}}
1111
<LeaderboardPage::EntriesTable::SkeletonRow @rankText={{concat "#" rank}} />
1212
{{/each}}
1313
{{else}}

0 commit comments

Comments
 (0)