diff --git a/src/components/DisplayCodeResponse.tsx b/src/components/DisplayCodeResponse.tsx
index 885561d..75ae0fe 100644
--- a/src/components/DisplayCodeResponse.tsx
+++ b/src/components/DisplayCodeResponse.tsx
@@ -2,11 +2,9 @@ import { useState } from "react";
import { Highlight, themes } from "prism-react-renderer";
import { Typography, Box, useTheme } from "@mui/material";
import { CodeWrapper, DisplayCodeResponsePre } from "./Common-styles";
+import React from "react";
-export const DisplayCodeResponse = ({
- codeBlock,
- language = "javascript"
-}) => {
+export const DisplayCodeResponse = ({ codeBlock, language = "javascript" }) => {
const theme = useTheme();
const [copyText, setCopyText] = useState("Copy");
@@ -14,9 +12,7 @@ export const DisplayCodeResponse = ({
return (
@@ -33,7 +29,7 @@ export const DisplayCodeResponse = ({
color: theme.palette.text.primary,
borderTopRightRadius: "7px",
borderTopLeftRadius: "7px",
- marginBottom: "10px"
+ marginBottom: "10px",
}}
>
RESPONSE
@@ -51,7 +47,7 @@ export const DisplayCodeResponse = ({
userSelect: "none",
opacity: "0.5",
marginRight: "8px",
- fontSize: "16px"
+ fontSize: "16px",
}}
>
{i + 1}
diff --git a/src/components/QortalSVG.tsx b/src/components/QortalSVG.tsx
index 3314c9e..bd27693 100644
--- a/src/components/QortalSVG.tsx
+++ b/src/components/QortalSVG.tsx
@@ -1,10 +1,6 @@
+import React from "react";
-export const QortalSVG = ({
- color,
- height,
- width,
- className
-}) => {
+export const QortalSVG = ({ color, height, width, className }) => {
return (