diff --git a/frontend/src/components/markdown/list.tsx b/frontend/src/components/markdown/list.tsx
index 64583f53fd02..19b449be171e 100644
--- a/frontend/src/components/markdown/list.tsx
+++ b/frontend/src/components/markdown/list.tsx
@@ -4,8 +4,8 @@ import { ExtraProps } from "react-markdown";
// Custom component to render
in markdown
export function ul({
children,
-}: React.ClassAttributes &
- React.HTMLAttributes &
+}: React.ClassAttributes &
+ React.HTMLAttributes &
ExtraProps) {
return ;
}
@@ -13,10 +13,13 @@ export function ul({
// Custom component to render in markdown
export function ol({
children,
-}: React.ClassAttributes &
- React.HTMLAttributes &
+ start,
+}: React.ClassAttributes &
+ React.OlHTMLAttributes &
ExtraProps) {
return (
- {children}
+
+ {children}
+
);
}