Skip to content

Commit 4e38004

Browse files
committed
update docusaurus
1 parent 03ededf commit 4e38004

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

website/src/pages/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -881,8 +881,8 @@ While it's often hard to find the best name, aim to optimize code for consistenc
881881
Singular, capitalized with const assertion.
882882
883883
```ts
884-
const ORDER_STATUS = {
885-
pending: 'pending',
884+
const IDLE_ORDER = {
885+
pending: 'idle',
886886
fulfilled: true,
887887
error: 'Shipping Error',
888888
} as const;
@@ -898,8 +898,8 @@ While it's often hard to find the best name, aim to optimize code for consistenc
898898
error: string;
899899
};
900900

901-
const PENDING_STATUS = {
902-
pending: 'pending',
901+
const IDLE_ORDER = {
902+
pending: 'idle',
903903
fulfilled: true,
904904
error: 'Shipping Error',
905905
} as const satisfies OrderStatus;

0 commit comments

Comments
 (0)