From b7702af1e36e08660da7a23a2a0cecd39ffc94e4 Mon Sep 17 00:00:00 2001 From: rijkvanzanten Date: Thu, 30 Jul 2020 17:56:19 -0400 Subject: [PATCH] Remove stray console log --- app/src/composables/use-form-fields/use-form-fields.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/src/composables/use-form-fields/use-form-fields.ts b/app/src/composables/use-form-fields/use-form-fields.ts index b3181872e0..ac3617f1be 100644 --- a/app/src/composables/use-form-fields/use-form-fields.ts +++ b/app/src/composables/use-form-fields/use-form-fields.ts @@ -69,8 +69,6 @@ export default function useFormFields(fields: Ref) { if (index !== 0 && field.system!.width === 'half') { const prevField = formFields[index - 1]; - console.log(prevField); - if (prevField.system.width === 'half') { field.system.width = 'half-right'; }