From d5847e2d2b68a1eb41d43be170cd4ddff9003cff Mon Sep 17 00:00:00 2001
From: tobi <31960611+tsmethurst@users.noreply.github.com>
Date: Mon, 17 Mar 2025 15:06:17 +0100
Subject: [feature] Application creation + management via API + settings panel
(#3906)
* [feature] Application creation + management via API + settings panel
* fix docs links
* add errnorows test
* use known application as shorter
* add comment about side effects
---
.../settings/views/admin/debug/apurl/index.tsx | 29 +++-------------------
1 file changed, 3 insertions(+), 26 deletions(-)
(limited to 'web/source/settings/views/admin/debug')
diff --git a/web/source/settings/views/admin/debug/apurl/index.tsx b/web/source/settings/views/admin/debug/apurl/index.tsx
index b66794132..9ad88aa03 100644
--- a/web/source/settings/views/admin/debug/apurl/index.tsx
+++ b/web/source/settings/views/admin/debug/apurl/index.tsx
@@ -17,16 +17,14 @@
along with this program. If not, see .
*/
-import React, { useEffect, useRef } from "react";
+import React from "react";
import { useTextInput } from "../../../../lib/form";
import { useLazyApURLQuery } from "../../../../lib/query/admin/debug";
import { TextInput } from "../../../../components/form/inputs";
import MutationButton from "../../../../components/form/mutation-button";
import { ApURLResponse } from "../../../../lib/types/debug";
import Loading from "../../../../components/loading";
-
-// Used for syntax highlighting of json result.
-import Prism from "../../../../../frontend/prism";
+import { HighlightedCode } from "../../../../components/highlightedcode";
export default function ApURL() {
const urlField = useTextInput("url");
@@ -102,26 +100,5 @@ function ApURLResult({
};
const jsonStr = JSON.stringify(jsonObj, null, 2);
- return ;
-}
-
-function Highlighted({ jsonStr }: { jsonStr: string }) {
- const ref = useRef(null);
- useEffect(() => {
- if (ref.current) {
- Prism.highlightElement(ref.current);
- }
- }, []);
-
- // Prism takes control of the `pre` so wrap
- // the whole thing in a div that we control.
- return (
-
- );
+ return ;
}
--
cgit v1.2.3