From ef66578d967cbd82863f7829204015ec0a98cb8b Mon Sep 17 00:00:00 2001 From: Blaine Jester Date: Mon, 5 Dec 2022 07:40:53 -0800 Subject: [PATCH] Fix axios key name for custom param serializer --- contentcuration/contentcuration/frontend/shared/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contentcuration/contentcuration/frontend/shared/client.js b/contentcuration/contentcuration/frontend/shared/client.js index c46e5ed2af..e962e46dd4 100644 --- a/contentcuration/contentcuration/frontend/shared/client.js +++ b/contentcuration/contentcuration/frontend/shared/client.js @@ -28,7 +28,7 @@ const client = axios.create({ xsrfCookieName: 'csrftoken', xsrfHeaderName: 'X-CSRFToken', paramsSerializer: { - serializer: paramsSerializer, + serialize: paramsSerializer, }, });