Skip to content

Commit

Permalink
5512: fix minor tests, add padding to privacy notice
Browse files Browse the repository at this point in the history
  • Loading branch information
TomElliottFlexion committed May 9, 2024
1 parent 93e29ed commit 8933985
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,13 @@

.petitioner-info {
width: 50%;
margin-top: 4rem;
float: left;
}

.spouse-info {
width: 50%;
margin-top: 4rem;
float: right;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const Petition = ({
</li>
</ol>
</div>
<div>
<div className="privacy-notice">
PRIVACY NOTICE: Form 4 (Statement of Taxpayer Identification Number)
will not be part of the Court’s public files. All other documents
filed with the Court, including this petition and any IRS Notice that
Expand All @@ -108,8 +108,8 @@ export const Petition = ({
cover) from this petition, any enclosed IRS Notice, and any other
document (other than Form 4) your taxpayer identification number
(e.g., your Social Security number) and certain other confidential
information as specified in the Tax Court’s Notice Regarding Privacy
and Public Access to Case Files, available at{' '}
information as specified in the Tax Court’s &quot;Notice Regarding
Privacy and Public Access to Case Files,&quot; available at{' '}
<a href="https://www.ustaxcourt.gov">www.ustaxcourt.gov</a>.
</div>
<div>
Expand Down Expand Up @@ -142,8 +142,7 @@ export const Petition = ({
{contactSecondary.address2 && <div>{contactSecondary.address2}</div>}
{contactSecondary.address3 && <div>{contactSecondary.address3}</div>}
<div>
{contactSecondary.city},{''}
{contactSecondary.state}
{contactSecondary.city}, {contactSecondary.state}{' '}
{contactSecondary.postalCode}
</div>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,5 @@ export const incrementCurrentStepIndicatorAction = ({
store,
}: ActionProps) => {
const currentStep = get(state.stepIndicatorInfo.currentStep);
// if (currentStep == 3) {
// store.set(state.stepIndicatorInfo.currentStep, 5);
// } else {
store.set(state.stepIndicatorInfo.currentStep, currentStep + 1);
// }
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('setStepIndicatorInfoForPetitionGeneratorAction,', () => {
},
);

expect(result.state.stepIndicatorInfo.currentStep).toEqual(0);
expect(result.state.stepIndicatorInfo.currentStep).toEqual(1);
expect(result.state.stepIndicatorInfo.steps).toEqual([
'Petition',
'Petitioner Information',
Expand Down

0 comments on commit 8933985

Please sign in to comment.