diff --git a/public/svg/mcp.svg b/public/svg/mcp.svg
new file mode 100644
index 00000000..979efde5
--- /dev/null
+++ b/public/svg/mcp.svg
@@ -0,0 +1,15 @@
+
\ No newline at end of file
diff --git a/src/components/dashboard/MainMenu.tsx b/src/components/dashboard/MainMenu.tsx
index a81c88fc..c6170100 100644
--- a/src/components/dashboard/MainMenu.tsx
+++ b/src/components/dashboard/MainMenu.tsx
@@ -40,7 +40,7 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
'&:hover': {
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
- backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'rgba(255, 255, 255, 0.08)',
+ backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'inherit',
},
};
diff --git a/src/components/dashboard/NavBar.tsx b/src/components/dashboard/NavBar.tsx
index 58a9aaf3..1f36879e 100644
--- a/src/components/dashboard/NavBar.tsx
+++ b/src/components/dashboard/NavBar.tsx
@@ -164,7 +164,7 @@ export const NavBar: React.FC = ({
sx={{
color: darkMode ? '#ffffff' : '#0000008A',
'&:hover': {
- color: '#ff00c3'
+ background: 'inherit'
}
}}
>
@@ -365,6 +365,9 @@ export const NavBar: React.FC = ({
borderRadius: '5px',
padding: '8px',
marginRight: '10px',
+ '&:hover': {
+ background: 'inherit'
+ }
}}>
{user.email}
@@ -595,4 +598,4 @@ const NavBarRight = styled.div`
align-items: center;
justify-content: flex-end;
margin-left: auto;
-`;
\ No newline at end of file
+`;
diff --git a/src/components/integration/IntegrationSettings.tsx b/src/components/integration/IntegrationSettings.tsx
index 17f0ec72..6a7d6ce0 100644
--- a/src/components/integration/IntegrationSettings.tsx
+++ b/src/components/integration/IntegrationSettings.tsx
@@ -730,6 +730,17 @@ export const IntegrationSettingsModal = ({
Webhooks
+
+
@@ -1190,4 +1201,4 @@ export const modalStyle = {
padding: "20px",
maxHeight: "90vh",
overflow: "auto",
-};
\ No newline at end of file
+};
diff --git a/src/components/recorder/DOMBrowserRenderer.tsx b/src/components/recorder/DOMBrowserRenderer.tsx
index 213488fd..03319ac3 100644
--- a/src/components/recorder/DOMBrowserRenderer.tsx
+++ b/src/components/recorder/DOMBrowserRenderer.tsx
@@ -835,13 +835,13 @@ export const DOMBrowserRenderer: React.FC = ({
if (headTagRegex.test(rebuiltHTML)) {
rebuiltHTML = rebuiltHTML.replace(
- headTagRegex,
- `${cssInjection}`
+ "",
+ `${minimalCSS}`
);
- } else {
+ } else if (rebuiltHTML.includes("")) {
rebuiltHTML = rebuiltHTML.replace(
- /]*>/i,
- `${cssInjection}`
+ "",
+ `${minimalCSS}`
);
}