From 2521a1a25c4ec6108e1d3ebef393cf965b4f0a63 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 24 Jul 2024 20:25:22 +0530 Subject: [PATCH] feat: text & ss button --- src/components/organisms/RightSidePanel.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/organisms/RightSidePanel.tsx b/src/components/organisms/RightSidePanel.tsx index 2769c0f1..1e9de422 100644 --- a/src/components/organisms/RightSidePanel.tsx +++ b/src/components/organisms/RightSidePanel.tsx @@ -8,6 +8,7 @@ import { SimpleBox } from "../atoms/Box"; import Typography from "@mui/material/Typography"; import { useGlobalInfoStore } from "../../context/globalInfo"; import { PairForEdit } from "../../pages/RecordingPage"; +import { useActionContext } from '../../context/browserActions'; interface RightSidePanelProps { pairForEdit: PairForEdit; @@ -79,6 +80,9 @@ export const RightSidePanel = ({pairForEdit}: RightSidePanelProps) => { ) : null } + + + ); };