diff --git a/apps/web/app/templates/page.tsx b/apps/web/app/templates/page.tsx index 12879cd..754bb94 100644 --- a/apps/web/app/templates/page.tsx +++ b/apps/web/app/templates/page.tsx @@ -26,7 +26,7 @@ interface Template { createdAt: string; } -type Sort = 'trending' | 'top' | 'newest'; +type Sort = 'trending' | 'top'; type Scope = 'all' | 'mine'; const STATUS_STYLE: Record = { @@ -202,7 +202,7 @@ export default function TemplatesMarketplace() { {scope === 'all' && ( <>
- {(['trending', 'top', 'newest'] as Sort[]).map((s) => ( + {(['trending', 'top'] as Sort[]).map((s) => (