fix: remove custom styles

This commit is contained in:
amhsirak
2026-02-15 02:14:19 +05:30
parent 8acc3dfcca
commit 9d52302c1d

View File

@@ -28,7 +28,7 @@ const fetchWorkflow = (id: string, callback: (response: WorkflowFile) => void) =
throw new Error("No workflow found"); throw new Error("No workflow found");
} }
} }
).catch((error) => { console.log(`Failed to fetch workflow:`,error.message) }) ).catch((error) => { console.log(`Failed to fetch workflow:`, error.message) })
}; };
interface RightSidePanelProps { interface RightSidePanelProps {
@@ -1006,6 +1006,14 @@ export const RightSidePanel: React.FC<RightSidePanelProps> = ({ onFinishCapture
notify('info', 'Please select a different pagination element'); notify('info', 'Please select a different pagination element');
} }
}} }}
sx={{
color: '#ff00c3 !important',
borderColor: '#ff00c3 !important',
'&:hover': {
borderColor: '#ff00c3 !important',
backgroundColor: '#f4f6f4 !important',
}
}}
> >
Choose Different Element Choose Different Element
</Button> </Button>