fix: db type typo

Postgres -> Mongo
This commit is contained in:
Vasiliy 2025-01-14 23:25:22 +03:00 committed by GitHub
parent 5e0b7ba143
commit 5b633ec6c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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");
});
}}
>