Skip to content

Commit

Permalink
Remove 10 item limit from 'recent projects' list
Browse files Browse the repository at this point in the history
-- Since this is our main project browser for the moment, having things fall off the end of the list is no good.
  • Loading branch information
judeallred committed Oct 21, 2023
1 parent 66533c7 commit 91ebb6a
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ export const HashCoreHeaderMenuFiles: FC<HashCoreHeaderMenuFilesProps> = memo(
<ul>
{[...userProjects]
.sort(descByUpdatedAt)
.slice(0, 10)
.map(toListItem("User"))}
{userProfileUrl ? (
<>
Expand Down

0 comments on commit 91ebb6a

Please sign in to comment.