fix: match theme on checking action description

This commit is contained in:
Karishma
2025-10-08 23:48:20 +05:30
committed by GitHub
parent 95a4d3c857
commit ede319f6ac

View File

@@ -102,7 +102,7 @@ const ActionDescriptionBox = ({ isDarkMode }: { isDarkMode: boolean }) => {
sx={{ sx={{
color: isDarkMode ? 'white' : 'default', color: isDarkMode ? 'white' : 'default',
'&.Mui-checked': { '&.Mui-checked': {
color: '#ff33cc', color: '#ff00c3',
}, },
}} }}
/> />
@@ -138,4 +138,4 @@ const ActionDescriptionBox = ({ isDarkMode }: { isDarkMode: boolean }) => {
); );
}; };
export default ActionDescriptionBox; export default ActionDescriptionBox;