From 7058ea9f874ce62d75a4ff69975a0eafb2ec60b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yusuf=20=C4=B0pek?= Date: Sat, 25 Apr 2026 20:24:17 +0300 Subject: [PATCH] style: fix prettier issues after syncing with master --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- app/(dashboard)/projects/[projectId]/page.tsx | 5 +---- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e9d2179..821906b 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,7 +1,7 @@ --- name: Bug report about: Report a reproducible bug in OpenFrame -title: "bug: " +title: 'bug: ' labels: [bug] assignees: [] --- diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 28d34ac..94da4e3 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,7 +1,7 @@ --- name: Feature request about: Suggest an improvement for OpenFrame -title: "feat: " +title: 'feat: ' labels: [enhancement] assignees: [] --- diff --git a/app/(dashboard)/projects/[projectId]/page.tsx b/app/(dashboard)/projects/[projectId]/page.tsx index 1d46d4e..d2b5d7e 100644 --- a/app/(dashboard)/projects/[projectId]/page.tsx +++ b/app/(dashboard)/projects/[projectId]/page.tsx @@ -106,10 +106,7 @@ export default async function ProjectPage({ params, searchParams }: ProjectPageP where: { projectId: project.id }, skip, take: pageSize, - orderBy: [ - { updatedAt: sortOrder }, - { id: sortOrder }, - ], + orderBy: [{ updatedAt: sortOrder }, { id: sortOrder }], include: { versions: { where: { isActive: true },