From 9e8fc8b7aaa015308fbf98e2fa3f0d275b877274 Mon Sep 17 00:00:00 2001
From: Jacob Shandling <61553566+jacobshandling@users.noreply.github.com>
Date: Mon, 16 Jan 2023 12:11:04 -0800
Subject: [PATCH] Frontend: Replace mock Mdm bm API call with real one (#9289)
# Addresses epic #8855
# Fixes
- Before (mock data):
- After (real data):
# Checklist for submitter
- [x] Manual QA for all new/changed functionality
Co-authored-by: Jacob Shandling
---
frontend/services/entities/mdm_apple_bm.ts | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/frontend/services/entities/mdm_apple_bm.ts b/frontend/services/entities/mdm_apple_bm.ts
index 16e053375d..2635e58f53 100644
--- a/frontend/services/entities/mdm_apple_bm.ts
+++ b/frontend/services/entities/mdm_apple_bm.ts
@@ -1,6 +1,5 @@
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
-import { sendRequest } from "services/mock_service/service/service"; // MDM TODO: Replace when backend is merged
-// import sendRequest from "services";
+import sendRequest from "services";
import endpoints from "utilities/endpoints";
export default {