Skip to content

Commit 3dd4201

Browse files
committed
solve merge conflict
1 parent 1c28830 commit 3dd4201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Wizards/CreateManagedControlPlaneWizardContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { FC, useCallback, useEffect, useMemo, useRef, useState } from 'react';
22
import { useApiResourceMutation } from '../../lib/api/useApiResource';
33
import IllustrationMessageType from '@ui5/webcomponents-fiori/dist/types/IllustrationMessageType.js';
4-
import { useAuth } from '../../spaces/onboarding/auth/AuthContext.tsx';
4+
import { useAuthOnboarding } from '../../spaces/onboarding/auth/AuthContextOnboarding.tsx';
55
import { Member, MemberRoles } from '../../lib/api/types/shared/members.ts';
66
import type { WizardStepChangeEventDetail } from '@ui5/webcomponents-fiori/dist/Wizard.js';
77
import { zodResolver } from '@hookform/resolvers/zod';
@@ -64,7 +64,7 @@ export const CreateManagedControlPlaneWizardContainer: FC<
6464
CreateManagedControlPlaneWizardContainerProps
6565
> = ({ isOpen, setIsOpen, projectName = '', workspaceName = '' }) => {
6666
const { t } = useTranslation();
67-
const { user } = useAuth();
67+
const { user } = useAuthOnboarding();
6868
const errorDialogRef = useRef<ErrorDialogHandle>(null);
6969

7070
const [selectedStep, setSelectedStep] = useState<WizardStepType>('metadata');

0 commit comments

Comments
 (0)