Skip to content

Commit

Permalink
chore(gatsby): fix typo in string enum member (#32721)
Browse files Browse the repository at this point in the history
  • Loading branch information
yklcs committed Aug 9, 2021
1 parent 05b364f commit 2502250
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/gatsby/src/schema/types/sort.ts
Expand Up @@ -28,8 +28,8 @@ type AnyTypeComposer<TContext> =

export const SORTABLE_ENUM = {
SORTABLE: `SORTABLE`,
NOT_SORTABLE: `NON_SORTABLE`,
DEPRECATED_SORTABLE: `DERPECATED_SORTABLE`,
NOT_SORTABLE: `NOT_SORTABLE`,
DEPRECATED_SORTABLE: `DEPRECATED_SORTABLE`,
}

export const getSortOrderEnum = <TContext = any>({
Expand Down

0 comments on commit 2502250

Please sign in to comment.