@umbraco-cms/backoffice 14.0.0-a8a86579 → 14.0.0-d335c2c2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,9 +6,4 @@ export const handlers = [
6
6
  // Respond with a 200 status code
7
7
  ctx.status(200), ctx.json({ enabled: true }));
8
8
  }),
9
- rest.put(umbracoPath('/profiling/status'), (_req, res, ctx) => {
10
- return res(
11
- // Respond with a 200 status code
12
- ctx.status(200));
13
- }),
14
9
  ];