Skip to content

Commit

Permalink
Merge pull request #882 from US-Trustee-Program/CAMS-425-consolidatio…
Browse files Browse the repository at this point in the history
…n-lead-case-bug

CAMS-425: Removed clearing court when modifying case number
  • Loading branch information
fmaddenflx authored Sep 9, 2024
2 parents 9ef83d1 + f5a740f commit 053f233
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ describe('Consolidation UseCase tests', () => {
expect(store.leadCase).toBeNull();
expect(store.leadCaseId).toEqual('');
expect(store.leadCaseNumber).toEqual('');
expect(store.leadCaseCourt).toEqual('');
expect(store.leadCaseNumberError).toEqual('');
expect(store.foundValidCaseNumber).toBe(false);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ const consolidationUseCase = (
function clearLeadCase(): void {
store.setLeadCase(null);
store.setLeadCaseId('');
store.setLeadCaseCourt('');
store.setLeadCaseNumber('');
store.setLeadCaseNumberError('');
store.setFoundValidCaseNumber(false);
Expand Down

0 comments on commit 053f233

Please sign in to comment.