From e4797f73f47ecc2db1446aeceac999ec89dda27b Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Tue, 5 Dec 2023 13:26:53 -0500 Subject: [PATCH] remove explicit type since it can be inferred --- core/src/components/picker-column/picker-column.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/picker-column/picker-column.tsx b/core/src/components/picker-column/picker-column.tsx index 17413091d4..32e301186a 100644 --- a/core/src/components/picker-column/picker-column.tsx +++ b/core/src/components/picker-column/picker-column.tsx @@ -443,7 +443,7 @@ export class PickerColumn implements ComponentInterface { const options = Array.from( this.el.querySelectorAll('ion-picker-column-option') ); - return options.find((option: HTMLIonPickerColumnOptionElement) => { + return options.find((option) => { /** * If the whole picker column is disabled, the current value should appear active * If the current value item is specifically disabled, it should not appear active