diff --git a/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx b/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx index da91b637f..03931a05f 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardContainer.tsx @@ -5,8 +5,6 @@ * Supports multiple layout variants. */ -/** @jsxImportSource react */ - import type { FC } from 'react'; import styled from '@lilith/ui-styled-components'; import { WizardProgress } from './WizardProgress'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx b/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx index b444115fb..bebd4e6c6 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardNavigation.tsx @@ -4,8 +4,6 @@ * Navigation buttons for wizard: Back, Next/Continue, Skip. */ -/** @jsxImportSource react */ - import type { FC } from 'react'; import styled from '@lilith/ui-styled-components'; import { useWizard } from '../useWizard'; diff --git a/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx b/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx index 2ad2aeeb8..1ed616c2a 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardProgress.tsx @@ -5,9 +5,7 @@ * Supports numbered, dots, and bar variants. */ -/** @jsxImportSource react */ - -import React from 'react'; +import { Fragment } from 'react'; import type { FC } from 'react'; import styled from '@lilith/ui-styled-components'; import { useWizardProgress } from '../hooks/useWizardProgress'; @@ -72,7 +70,7 @@ export const WizardProgress: FC = ({ return ( {steps.map((step, index) => ( - + {index > 0 && ( )} @@ -93,7 +91,7 @@ export const WizardProgress: FC = ({ {showTitles && {step.title}} - + ))} ); diff --git a/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx b/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx index e152208ad..abc7f99a2 100755 --- a/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx +++ b/@packages/@providers/wizard-provider/src/components/WizardStepRenderer.tsx @@ -5,8 +5,6 @@ * Supports optional transition animations. */ -/** @jsxImportSource react */ - import { useMemo } from 'react' import type { FC } from 'react'; import styled from '@lilith/ui-styled-components';