diff --git a/client/state/selectors/is-woocommerce-core-profiler-flow.ts b/client/state/selectors/is-woocommerce-core-profiler-flow.ts index a79b28aa7cefd..01645a4aac853 100644 --- a/client/state/selectors/is-woocommerce-core-profiler-flow.ts +++ b/client/state/selectors/is-woocommerce-core-profiler-flow.ts @@ -11,7 +11,7 @@ import type { AppState } from 'calypso/types'; * @returns {?boolean} Whether the user reached Calypso via the WooCommerce Core Profiler flow */ export const isWooCommerceCoreProfilerFlow = ( state: AppState ): boolean => { - const allowedFrom = [ 'woocommerce-core-profiler', 'woocommerce-payments' ]; + const allowedFrom = [ 'woocommerce-core-profiler' ]; return ( allowedFrom.includes( get( getInitialQueryArguments( state ), 'from' ) as string ) || allowedFrom.includes( get( getCurrentQueryArguments( state ), 'from' ) as string ) ||