Skip to content

Commit

Permalink
fix: wrong cache type (#688) [skip ci]
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Genzelis <[email protected]>
  • Loading branch information
2 people authored and DylanVann committed Jul 17, 2020
1 parent c23204f commit 94e2256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const priority = {
high: 'high',
} as const

type Cache = 'low' | 'normal' | 'high'
type Cache = 'immutable' | 'web' | 'cacheOnly'

const cacheControl = {
// Ignore headers, use uri as cache key, fetch only if not in cache.
Expand Down

0 comments on commit 94e2256

Please sign in to comment.