Skip to content

Commit

Permalink
fix(fetch-cache): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
samcx committed Apr 19, 2024
1 parent b7eb7d3 commit b576893
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ export default class FetchCache implements CacheHandler {
if (cached.kind === 'FETCH') {
cached.tags ??= []
for (const tag of tags ?? []) {
if (!cached.tags.include(tag)) {
if (!cached.tags.includes(tag)) {
cached.tag.push(tag)
}
}
Expand Down

0 comments on commit b576893

Please sign in to comment.