Remove console log from appName generation in AddDatabase component

This commit is contained in:
Mauricio Siu
2025-05-04 20:15:17 -06:00
parent 86b56e2597
commit c110fae965

View File

@@ -364,7 +364,6 @@ export const AddDatabase = ({ projectId, projectName }: Props) => {
onChange={(e) => {
const val = e.target.value?.trim() || "";
const serviceName = slugify(val);
console.log(serviceName);
form.setValue("appName", `${slug}-${serviceName}`);
field.onChange(val);
}}