aboutsummaryrefslogtreecommitdiffstats
path: root/apps/comments/src/utils/cancelableRequest.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/src/utils/cancelableRequest.js')
-rw-r--r--apps/comments/src/utils/cancelableRequest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/comments/src/utils/cancelableRequest.js b/apps/comments/src/utils/cancelableRequest.js
index 47baa505083..c2d380c80f9 100644
--- a/apps/comments/src/utils/cancelableRequest.js
+++ b/apps/comments/src/utils/cancelableRequest.js
@@ -22,7 +22,7 @@ const cancelableRequest = function(request) {
const fetch = async function(url, options) {
const response = await request(
url,
- Object.assign({ signal }, options)
+ Object.assign({ signal }, options),
)
return response
}