From d77b4ffddb898d5e73d0fbcdd38230423896ee48 Mon Sep 17 00:00:00 2001 From: behnamrhp Date: Tue, 30 May 2023 16:03:00 +0300 Subject: [PATCH] [REF]: remove extra logs --- .../core/places/create-place/viewmodel/createPlaceVM.ts | 1 - 1 file changed, 1 deletion(-) 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,