Merge pull request #823 from getmaxun/action-desc-ui

fix: match theme on checking action description
This commit is contained in:
Karishma
2025-10-21 19:21:00 +05:30
committed by GitHub

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;