Skip to content

Commit

Permalink
changed == to ===
Browse files Browse the repository at this point in the history
  • Loading branch information
Bl20052005 committed Dec 15, 2023
1 parent 6a56b22 commit 09c7d67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function RadioSelect({
<div className="w-10/12 flex flex-col gap-2">
{values.map((item, i) => {
const keyandId = `${IdentifierId}-${i}`;
if (item.value == "other") {
if (item.value === "other") {
return (
<div key={keyandId} className="flex gap-2">
<input
Expand Down

0 comments on commit 09c7d67

Please sign in to comment.