Skip to content

Commit

Permalink
remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
vsseixaso committed Jun 3, 2024
1 parent a2569ec commit 9381175
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HttpClient/middlewares/cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ export const cacheMiddleware = ({ type, storage, asyncSet }: CacheOptions) => {
if (asyncSet) {
storageSet().catch(error => {
ErrorReport.create({ originalError: error }).injectOnSpan(cacheWriteSpan);
logger?.warn({ message: 'Error writing to the HttpClient cache asynchronously', error });
logger?.warn({ message: 'Error writing to the HttpClient cache asynchronously', error })
})
} else {
await storageSet()
Expand Down

0 comments on commit 9381175

Please sign in to comment.