Skip to content

Commit

Permalink
Small equality fix in unsafeDeletePolyfillStore()
Browse files Browse the repository at this point in the history
  • Loading branch information
gustafnk committed Sep 5, 2023
1 parent 538a4c5 commit e29ea65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload-polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ async function unsafeDeletePolyfillStore() {
"Fastly-Key": env.FASTLY_API_TOKEN
}
})
if (response.status === 200) {
if (response.status == 200) {
console.log(`Deleted ${storeId}`)
} else {
console.log(`Did not delete ${storeId}`)
Expand Down

0 comments on commit e29ea65

Please sign in to comment.