Skip to content

Commit

Permalink
Fix exclude indicator display
Browse files Browse the repository at this point in the history
  • Loading branch information
jlam-mpc committed Jun 14, 2024
1 parent 53abd76 commit c04b0a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const PublishablePositionCard = ({
className: 'width-280',
};
const [status, setStatus] = useState(data?.psCD || '');
const [exclude, setExclude] = useState(data?.posAuditExclusionInd === 'N');
const [exclude, setExclude] = useState(data?.posAuditExclusionInd === 'Y');
const [selectedCycles, setSelectedCycles] = useState([]);
const [selectedFuncBureau, setSelectedFuncBureau] = useState('');
const [overrideTOD, setOverrideTOD] = useState('');
Expand Down

0 comments on commit c04b0a9

Please sign in to comment.