fix: hide unknown event json

This commit is contained in:
2024-08-26 16:22:26 +03:00
parent 1f3e048f10
commit eec52efc3e
2 changed files with 8 additions and 8 deletions

View File

@ -4,7 +4,7 @@ import { ReactNode, useState } from "react";
import Icon from "@/Components/Icons/Icon";
interface CollapsedProps {
text?: string;
text?: ReactNode;
children: ReactNode;
collapsed: boolean;
setCollapsed(b: boolean): void;