Merge pull request #1115 from TheLetslook/patch-1

fix: db type typo
This commit is contained in:
Mauricio Siu
2025-01-15 23:30:29 -06:00
committed by GitHub

View File

@@ -165,10 +165,10 @@ const Mongo = (
router.push(
`/dashboard/project/${data?.projectId}`,
);
toast.success("Postgres deleted successfully");
toast.success("Mongo deleted successfully");
})
.catch(() => {
toast.error("Error deleting the postgres");
toast.error("Error deleting the mongo");
});
}}
>