Skip to content

Commit a4004e9

Browse files
committed
linting
1 parent 1a5eb83 commit a4004e9

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/server/signin-gate/libPure.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -456,10 +456,7 @@ export const getTreatmentsRequestPayloadToGateType = (
456456
// of the space. Therefore one and only one condition of the below conditions
457457
// should correspond to a given payload.
458458

459-
if (
460-
payload.countryCode === 'IE' &&
461-
userHasConsented(payload)
462-
) {
459+
if (payload.countryCode === 'IE' && userHasConsented(payload)) {
463460
// [07] (copy from logic.md)
464461
//
465462
// prerequisites:
@@ -471,10 +468,7 @@ export const getTreatmentsRequestPayloadToGateType = (
471468
return 'AuxiaAPI';
472469
}
473470

474-
if (
475-
payload.countryCode === 'IE' &&
476-
!userHasConsented(payload)
477-
) {
471+
if (payload.countryCode === 'IE' && !userHasConsented(payload)) {
478472
// [05] (copy from logic.md)
479473
//
480474
// prerequisites:

0 commit comments

Comments
 (0)