diff --git a/frontend/src/components/resources/build/dashboard.tsx b/frontend/src/components/resources/build/dashboard.tsx index 25501aeb3..bcbc70b25 100644 --- a/frontend/src/components/resources/build/dashboard.tsx +++ b/frontend/src/components/resources/build/dashboard.tsx @@ -30,7 +30,7 @@ export const BuildDashboard = () => { - +
{
- +
{
- +
{
- +
{
- +
{

Recent {type}s

-
- {ids.map((id: string) => ( - +
+ {ids.map((id, i) => ( + 3 && "hidden 2xl:block"} + /> ))}
@@ -66,11 +71,22 @@ const ResourceRow = ({ type }: { type: UsableResource }) => { ); }; -const RecentCard = ({ type, id }: { type: UsableResource; id: string }) => { +const RecentCard = ({ + type, + id, + className, +}: { + type: UsableResource; + id: string; + className: string | false; +}) => { const Components = ResourceComponents[type]; const tags = Components.list_item(id)?.tags; return ( - +