diff --git a/src/driving/application/core/places/create-place/viewmodel/createPlaceVM.ts b/src/driving/application/core/places/create-place/viewmodel/createPlaceVM.ts index c56f0d1..a6386c8 100644 --- a/src/driving/application/core/places/create-place/viewmodel/createPlaceVM.ts +++ b/src/driving/application/core/places/create-place/viewmodel/createPlaceVM.ts @@ -42,7 +42,6 @@ const useCreatePlaceVm = (dependencies: ICreatePlaceVm) => { e.preventDefault(); try { const { parentId, placeName, placeTypes: placeType } = formState; - console.log(formState); if (!placeName || !placeName) throw new Error(staticMessages.global.errors.inputPlace); const newPlaceData: createPlaceArguments = { parentId: parentId.value,