diff --git a/frontend/services/entities/mdm.ts b/frontend/services/entities/mdm.ts index 7a4efca932..c851bc7b7f 100644 --- a/frontend/services/entities/mdm.ts +++ b/frontend/services/entities/mdm.ts @@ -334,7 +334,12 @@ const mdmService = { downloadManualEnrollmentProfile: (token: string) => { const { DEVICE_USER_MDM_ENROLLMENT_PROFILE } = endpoints; - return sendRequest("GET", DEVICE_USER_MDM_ENROLLMENT_PROFILE(token)); + return sendRequest( + "GET", + DEVICE_USER_MDM_ENROLLMENT_PROFILE(token), + undefined, + "blob" + ); }, };