function userIsNavigatingBackFromThankYouPage()

in client/components/mma/upgrade/UpgradeSupportContainer.tsx [63:69]


function userIsNavigatingBackFromThankYouPage(hasCompleted: boolean) {
	return (
		hasCompleted &&
		!location.pathname.includes('thank-you') &&
		!location.pathname.includes('switch-thank-you')
	);
}