[ML] Fix data comparison on basic license (#165383)

This commit is contained in:
Quynh Nguyen (Quinn) 2023-09-05 01:44:57 -05:00 committed by GitHub
parent deed5e4679
commit a29bfb0e7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ export const dataComparisonRouteFactory = (
});
const PageWrapper: FC<PageProps> = () => {
const { context } = useRouteResolver('basic', [], basicResolvers());
const { context } = useRouteResolver('full', [], basicResolvers());
return (
<PageLoader context={context}>

View file

@ -199,7 +199,7 @@ export const dataComparisonIndexOrSearchRouteFactory = (
{...props}
nextStepPath={createPath(ML_PAGES.DATA_COMPARISON)}
deps={deps}
mode={MODE.DATAVISUALIZER}
mode={MODE.NEW_JOB}
/>
),
breadcrumbs: getDataVisBreadcrumbs(navigateToPath, basePath),