From 8ce3988613a19be1ad5463ff6d9cc3219f622983 Mon Sep 17 00:00:00 2001 From: charlesgauthereau Date: Fri, 26 Sep 2025 09:15:22 +0200 Subject: [PATCH] Ready for 1.1.2-rc.3 --- app/(customer)/dashboard/home/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/(customer)/dashboard/home/page.tsx b/app/(customer)/dashboard/home/page.tsx index da3bd95c..4d0f89be 100644 --- a/app/(customer)/dashboard/home/page.tsx +++ b/app/(customer)/dashboard/home/page.tsx @@ -43,7 +43,7 @@ export default async function RoutePage(props: PageParams<{}>) { where: inArray(drizzleDb.schemas.backup.databaseId, databaseIds), }); - const availableBackups = backupsEvolution.map(backup => backup.deletedAt == null); + const availableBackups = backupsEvolution.filter(backup => backup.deletedAt == null); return (