Skip to content

Commit

Permalink
chore(fetch-cache): switch from template string to regular string
Browse files Browse the repository at this point in the history
  • Loading branch information
samcx committed Apr 26, 2024
1 parent b755014 commit ba3ef6b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ export default class FetchCache implements CacheHandler {

if (!cached || cached.kind !== 'FETCH') {
this.debug && console.log({ cached })
throw new Error(`invalid cache value`)
throw new Error('invalid cache value')
}

// if new tags were specified, merge those tags to the existing tags
Expand Down

0 comments on commit ba3ef6b

Please sign in to comment.