Skip to content

Commit 9381175

Browse files
committed
remove unnecessary semicolon
1 parent a2569ec commit 9381175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HttpClient/middlewares/cache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export const cacheMiddleware = ({ type, storage, asyncSet }: CacheOptions) => {
235235
if (asyncSet) {
236236
storageSet().catch(error => {
237237
ErrorReport.create({ originalError: error }).injectOnSpan(cacheWriteSpan);
238-
logger?.warn({ message: 'Error writing to the HttpClient cache asynchronously', error });
238+
logger?.warn({ message: 'Error writing to the HttpClient cache asynchronously', error })
239239
})
240240
} else {
241241
await storageSet()

0 commit comments

Comments
 (0)