Skip to content

Commit

Permalink
10502-dxox: fix bad seed data for case 150-12, and remove a few conso…
Browse files Browse the repository at this point in the history
…le logs
  • Loading branch information
Mwindo committed Jan 11, 2025
1 parent 944631a commit f1853c1
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,6 @@ export const advancedDocumentSearch = async ({
}));
});

console.log('sortField for document results', sortField);

console.log('openSearch results', opensearchResults);

console.log(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const cases130_309: NewCaseKysely[] = [
orderToShowCause: false,
partyType: PARTY_TYPES.petitioner,
petitionPaymentStatus: PAYMENT_STATUS.UNPAID,
preferredTrialCity: 'Washington, District of Columbia, 1613493436635',
preferredTrialCity: 'Washington, District of Columbia',
procedureType: PROCEDURE_TYPES_MAP.regular,
qcCompleteForTrial: {},
receivedAt: calculateDate({ dateString: '2021-02-16T16:37:16.782Z' }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ export const getPublicCaseAction = async ({
applicationContext,
props,
}: ActionProps) => {
console.log('getPublicCaseAction!');
const caseDetail = await applicationContext
.getUseCases()
.getCaseInteractor(applicationContext, {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ export const getTrialSessionsOnCaseAction = async ({
);
}

console.log('CASE DETAIL', caseDetail);

trialSessions = [
...trialSessions,
...(await Promise.all(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export const caseStatusHistoryHelper = (
applicationContext: ClientApplicationContext,
): any => {
const caseStatusHistory = get(state.caseDetail.caseStatusHistory);
console.log('WOOT', caseStatusHistory);
return {
formattedCaseStatusHistory: caseStatusHistory.map(history => ({
...history,
Expand Down

0 comments on commit f1853c1

Please sign in to comment.