function productHasEarlySaveJourney()

in client/components/mma/cancel/CancellationJourneyFunnel.tsx [19:24]


function productHasEarlySaveJourney(productTypeKey: ProductTypeKeys): boolean {
	return (
		productTypeKey === 'membership' ||
		(featureSwitches.digisubSave && productTypeKey === 'digipack')
	);
}