diff --git a/packages/client/src/components/SidebarBase.tsx b/packages/client/src/components/SidebarBase.tsx
index 60c7e49e47a3e2818b118f0082f41dcbc69aace0..9458c2404bdd87d407b75a900e3304c5f838fd9a 100644
--- a/packages/client/src/components/SidebarBase.tsx
+++ b/packages/client/src/components/SidebarBase.tsx
@@ -1,8 +1,9 @@
-import { motion } from "framer-motion"
+import { motion } from "framer-motion";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { IconProp } from "@fortawesome/fontawesome-svg-core";
import { Button, Divider } from "@nextui-org/react";
import { faXmark } from "@fortawesome/free-solid-svg-icons";
+import { JSX } from "react";
/**
* Information sidebar
@@ -11,26 +12,53 @@ import { faXmark } from "@fortawesome/free-solid-svg-icons";
*
* @returns
*/
-export const SidebarBase = ({children, shown, icon, setSidebarShown, title, description, side}: { children: string | JSX.Element | JSX.Element[], icon: IconProp, shown: boolean, setSidebarShown: (value: boolean) => void, title: string, description: string, side: "Left" | "Right" }) => {
+export const SidebarBase = ({
+ children,
+ shown,
+ icon,
+ setSidebarShown,
+ title,
+ description,
+ side,
+}: {
+ children: string | JSX.Element | JSX.Element[];
+ icon: IconProp;
+ shown: boolean;
+ setSidebarShown: (value: boolean) => void;
+ title: string;
+ description: string;
+ side: "Left" | "Right";
+}) => {
return (
@@ -41,10 +69,15 @@ export const SidebarBase = ({children, shown, icon, setSidebarShown, title, desc
{description}
-