[common mobile] Fixed theme color palette

This commit is contained in:
JuliaSvinareva 2021-01-12 16:29:56 +03:00
parent f7892ac068
commit 717bc84804

View file

@ -13,7 +13,7 @@ const ThemeColors = ({ themeColors, onColorClick, curColor }) => {
<a key={`tc-${rowIndex}-${index}`}
className={curColor && curColor.color === effect.color && curColor.effectValue === effect.effectValue ? 'active' : ''}
style={{ background: `#${effect.color}`}}
onClick={() => {onColorClick(effect.color, effect.effectId)}}
onClick={() => {onColorClick(effect.color, effect.effectId, effect.effectValue)}}
></a>
)
})}