diff --git a/Frontend/src/app/components/mdx.tsx b/Frontend/src/app/components/mdx.tsx
index eba3edc..d5b7bee 100644
--- a/Frontend/src/app/components/mdx.tsx
+++ b/Frontend/src/app/components/mdx.tsx
@@ -49,22 +49,22 @@ const components: any = {
),
// Tables
- table: ({ children }: { children: any }) => (
-
-
-
- {children?.[0].props?.children?.props?.children}
-
-
- {children?.[1].props?.children}
-
- ),
- th: ({ children }: { children: ReactNode }) => (
- {children}
- ),
- td: ({ children }: { children: ReactNode }) => (
- {children}
- ),
+ // table: ({ children }: { children: any }) => (
+ //
+ //
+ //
+ // {children?.[0].props?.children?.props?.children}
+ //
+ //
+ // {children?.[1].props?.children}
+ //
+ // ),
+ // th: ({ children }: { children: ReactNode }) => (
+ // {children}
+ // ),
+ // td: ({ children }: { children: ReactNode }) => (
+ // {children}
+ // ),
};
/**