From 6d8009a93c5724511a25dbe775cb07ba19d240a5 Mon Sep 17 00:00:00 2001 From: Eric Giovanola Date: Thu, 19 Oct 2023 14:48:16 -0700 Subject: [PATCH] Fix prettier formatting --- src/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types.ts b/src/types.ts index 99802717..47839204 100644 --- a/src/types.ts +++ b/src/types.ts @@ -14,7 +14,7 @@ import { import { ALIGN_VALUES, SIZES } from './constants'; -export type Align = typeof ALIGN_VALUES[number]; +export type Align = (typeof ALIGN_VALUES)[number]; export type AllowNew = | boolean @@ -41,7 +41,7 @@ export type SelectHint = ( event: KeyboardEvent ) => boolean; -export type Size = typeof SIZES[number]; +export type Size = (typeof SIZES)[number]; export type TypeaheadChildren = | ReactNode