@@ -217,7 +218,16 @@ function SampleMarkable({
{row.size}
- {row.summary}
+
+
+ {row.summary}
+
+
diff --git a/homepage/src/components/detection/detection.css b/homepage/src/components/detection/detection.css
new file mode 100644
index 0000000..d7d86e4
--- /dev/null
+++ b/homepage/src/components/detection/detection.css
@@ -0,0 +1,3 @@
+.detection-samples-accordion::before {
+ display: none;
+}
\ No newline at end of file
diff --git a/homepage/src/pages/_app.tsx b/homepage/src/pages/_app.tsx
index 1ded640..b999dd2 100644
--- a/homepage/src/pages/_app.tsx
+++ b/homepage/src/pages/_app.tsx
@@ -6,6 +6,7 @@ import MainLayout from "@/layout/MainLayout";
import type { ReactElement, ReactNode } from "react";
import type { NextPage } from "next";
import Script from "next/script";
+import "@/components/detection/detection.css"
export type NextPageWithLayout = NextPage
& {
getLayout?: (page: ReactElement) => ReactNode;
diff --git a/homepage/src/pages/detection.tsx b/homepage/src/pages/detection.tsx
index 0144ef7..32c7253 100644
--- a/homepage/src/pages/detection.tsx
+++ b/homepage/src/pages/detection.tsx
@@ -3,7 +3,6 @@ import Container from "@mui/material/Container";
import Result from "@/components/detection/Result";
import { useRouter } from "next/router";
import "highlight.js/styles/a11y-light.css";
-import Box from "@mui/material/Box";
import { getSampleSet, getSampleSetResult } from "@/api/detection";
import { Message } from "@/components";
import type {