Skip to content

Commit

Permalink
P4PU-485: Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnisLucidi01 committed Sep 18, 2024
1 parent 34e9a68 commit fd54b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/AssistanceForm/AssistanceForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const AssistanceForm = () => {
const form = document.getElementById('jwtForm') as HTMLFormElement;
const jwtString = document.getElementById('jwtString') as HTMLInputElement;
const returnTo = document.getElementById('returnTo') as HTMLInputElement;
const actionUrl = document.getElementById('jwtForm') as HTMLInputElement;
const actionUrl = document.getElementById('jwtForm') as HTMLFormElement;

Check warning on line 46 in src/components/AssistanceForm/AssistanceForm.tsx

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement
jwtString.setAttribute('value', zendeskAssistance.assistanceToken);
returnTo.setAttribute('value', zendeskAssistance.returnTo);
actionUrl.setAttribute('action', zendeskAssistance.actionUrl);
Expand Down

0 comments on commit fd54b1e

Please sign in to comment.