Skip to content

Commit 2502250

Browse files
authored
chore(gatsby): fix typo in string enum member (#32721)
1 parent 05b364f commit 2502250

File tree

1 file changed

+2
-2
lines changed
  • packages/gatsby/src/schema/types

1 file changed

+2
-2
lines changed

packages/gatsby/src/schema/types/sort.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ type AnyTypeComposer<TContext> =
2828

2929
export const SORTABLE_ENUM = {
3030
SORTABLE: `SORTABLE`,
31-
NOT_SORTABLE: `NON_SORTABLE`,
32-
DEPRECATED_SORTABLE: `DERPECATED_SORTABLE`,
31+
NOT_SORTABLE: `NOT_SORTABLE`,
32+
DEPRECATED_SORTABLE: `DEPRECATED_SORTABLE`,
3333
}
3434

3535
export const getSortOrderEnum = <TContext = any>({

0 commit comments

Comments
 (0)