Skip to content

Commit

Permalink
Add enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Oct 25, 2022
1 parent 0b2507f commit b18bf13
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/next/shared/lib/app-router-context.ts
Expand Up @@ -6,9 +6,9 @@ export type ChildSegmentMap = Map<string, CacheNode>

// eslint-disable-next-line no-shadow
export enum CacheStates {
LAZYINITIALIZED,
DATAFETCH,
READY,
LAZYINITIALIZED = 'LAZYINITIALIZED',
DATAFETCH = 'DATAFETCH',
READY = 'READY',
}

/**
Expand Down

0 comments on commit b18bf13

Please sign in to comment.