Skip to content

Commit

Permalink
chore(j-s): Switch indictment confirmation request (#17153)
Browse files Browse the repository at this point in the history
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
2 people authored and thorhildurt committed Dec 11, 2024
1 parent cce1883 commit 8dd66df
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,20 +280,20 @@ const Overview: FC = () => {
<RadioButton
large
name="indictmentConfirmationRequest"
id="confirmIndictment"
id="denyIndictment"
backgroundColor="white"
label={formatMessage(strings.confirmIndictment)}
checked={indictmentConfirmationDecision === 'confirm'}
onChange={() => setIndictmentConfirmationDecision('confirm')}
label={formatMessage(strings.denyIndictment)}
checked={indictmentConfirmationDecision === 'deny'}
onChange={() => setIndictmentConfirmationDecision('deny')}
/>
<RadioButton
large
name="indictmentConfirmationRequest"
id="denyIndictment"
id="confirmIndictment"
backgroundColor="white"
label={formatMessage(strings.denyIndictment)}
checked={indictmentConfirmationDecision === 'deny'}
onChange={() => setIndictmentConfirmationDecision('deny')}
label={formatMessage(strings.confirmIndictment)}
checked={indictmentConfirmationDecision === 'confirm'}
onChange={() => setIndictmentConfirmationDecision('confirm')}
/>
</div>
</BlueBox>
Expand Down

0 comments on commit 8dd66df

Please sign in to comment.