Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { STEPS } from '../internals/steps';
export const shouldRedirectToSiteMigration = (
step: string,
platform: string,
origin?: string | null,
entryPoint?: string | null
) => {
return (
step === STEPS.IMPORT_LIST.slug &&
platform === 'wordpress' &&
( origin === STEPS.SITE_MIGRATION_IDENTIFY.slug || entryPoint === 'wp-admin-importers-list' )
);
};