File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff 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:
You can’t perform that action at this time.
0 commit comments