diff --git a/src/extension/react/components/Panel.tsx b/src/extension/react/components/Panel.tsx
index 10b6bb9..f86a9ee 100644
--- a/src/extension/react/components/Panel.tsx
+++ b/src/extension/react/components/Panel.tsx
@@ -219,6 +219,7 @@ function Panel() {
Devtron
{
setTheme(theme === 'light' ? 'dark' : 'light');
}}
@@ -230,6 +231,7 @@ function Panel() {
)}
{
setDetailPanelPosition(detailPanelPosition === 'right' ? 'bottom' : 'right');
}}
@@ -242,6 +244,11 @@ function Panel() {
{
setLockToBottom(!lockToBottom);
@@ -255,7 +262,7 @@ function Panel() {
)}
-
+
diff --git a/src/extension/react/ui/CircularButton.tsx b/src/extension/react/ui/CircularButton.tsx
index b260e15..a856aef 100644
--- a/src/extension/react/ui/CircularButton.tsx
+++ b/src/extension/react/ui/CircularButton.tsx
@@ -7,21 +7,26 @@ type Props = {
active?: boolean;
};
-function CircularButton({ children, onClick, disabled = false, active = false }: Props) {
+function CircularButton({
+ children,
+ onClick,
+ tooltip = '',
+ disabled = false,
+ active = false,
+}: Props) {
return (
-
-
-
+
);
}