Skip to content

Commit

Permalink
fixes wrong cache type
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Genzelis committed Jun 3, 2020
1 parent cde7af5 commit af1e563
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 af1e563

Please sign in to comment.