From 3715ec82c1079eb1a65623904e5a3c803551be53 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Tue, 1 Nov 2022 14:40:41 +0000 Subject: [PATCH] chore(): lint --- core/src/components/datetime/datetime.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/datetime/datetime.tsx b/core/src/components/datetime/datetime.tsx index 36282c8720..bc5afd0e0b 100644 --- a/core/src/components/datetime/datetime.tsx +++ b/core/src/components/datetime/datetime.tsx @@ -1169,7 +1169,7 @@ export class Datetime implements ComponentInterface { private processValue = (value?: string | string[] | null) => { const hasValue = value !== '' && value !== null && value !== undefined; - let valueToProcess = hasValue ? parseDate(value) : this.defaultParts; + const valueToProcess = hasValue ? parseDate(value) : this.defaultParts; const { minParts, maxParts } = this;