Compare strings
This commit is contained in:
parent
2607a55380
commit
972d61bd8c
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ const ReasonStep = (_props: IReasonStep) => {
|
|||
ref={rulesListRef}
|
||||
>
|
||||
{rules.map((rule, idx) => {
|
||||
const isSelected = String(ruleId) === rule.id;
|
||||
const isSelected = String(ruleId) === String(rule.id);
|
||||
|
||||
return (
|
||||
<button
|
||||
|
|
Loading…
Reference in a new issue