Skip to content

Commit

Permalink
Fix prettier formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
ericgio committed Oct 19, 2023
1 parent 9bff901 commit 6d8009a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -41,7 +41,7 @@ export type SelectHint = (
event: KeyboardEvent<HTMLInputElement>
) => boolean;

export type Size = typeof SIZES[number];
export type Size = (typeof SIZES)[number];

export type TypeaheadChildren =
| ReactNode
Expand Down

0 comments on commit 6d8009a

Please sign in to comment.