Skip to content

Commit

Permalink
fixes wrong cache type (#688)
Browse files Browse the repository at this point in the history
Co-authored-by: Lucas Genzelis <lucas@foxbox.com>
  • Loading branch information
lgenzelis and Lucas Genzelis authored Jul 17, 2020
1 parent c23204f commit 485d137
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 485d137

Please sign in to comment.