diff --git a/features/profile/client/display/src/components/MobileSectionReorder.tsx b/features/profile/client/display/src/components/MobileSectionReorder.tsx index 30d6b5329..fed6b6718 100644 --- a/features/profile/client/display/src/components/MobileSectionReorder.tsx +++ b/features/profile/client/display/src/components/MobileSectionReorder.tsx @@ -5,7 +5,6 @@ * and up/down arrow buttons for accessible, touch-friendly reordering. */ -/** @jsxImportSource react */ import { Suspense, type FC, useCallback } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/ProfileSections.tsx b/features/profile/client/display/src/components/ProfileSections.tsx index 656118c06..d03e52b49 100644 --- a/features/profile/client/display/src/components/ProfileSections.tsx +++ b/features/profile/client/display/src/components/ProfileSections.tsx @@ -5,7 +5,6 @@ * Supports edit mode for drag-and-drop reordering (when wrapped with DndContext). */ -/** @jsxImportSource react */ import { Suspense, type FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfileAttributesSection.tsx b/features/profile/client/display/src/components/sections/ProfileAttributesSection.tsx index 9a7a27042..7ef299251 100644 --- a/features/profile/client/display/src/components/sections/ProfileAttributesSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfileAttributesSection.tsx @@ -3,7 +3,6 @@ * (incall/outcall availability, work types). */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfileBioSection.tsx b/features/profile/client/display/src/components/sections/ProfileBioSection.tsx index c6aa4741a..d8c7e6646 100644 --- a/features/profile/client/display/src/components/sections/ProfileBioSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfileBioSection.tsx @@ -2,7 +2,6 @@ * ProfileBioSection - Renders the "About" bio text for a provider profile. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfileDepositSection.tsx b/features/profile/client/display/src/components/sections/ProfileDepositSection.tsx index 4d4ab3c42..3bebfbd04 100644 --- a/features/profile/client/display/src/components/sections/ProfileDepositSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfileDepositSection.tsx @@ -2,7 +2,6 @@ * ProfileDepositSection - Displays deposit requirements for a provider. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfileLanguagesSection.tsx b/features/profile/client/display/src/components/sections/ProfileLanguagesSection.tsx index 0a2fb2290..9b536f606 100644 --- a/features/profile/client/display/src/components/sections/ProfileLanguagesSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfileLanguagesSection.tsx @@ -5,7 +5,6 @@ * This section will be populated when language support is added. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfilePhysicalSection.tsx b/features/profile/client/display/src/components/sections/ProfilePhysicalSection.tsx index 5b6155f0e..d2b0c1be8 100644 --- a/features/profile/client/display/src/components/sections/ProfilePhysicalSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfilePhysicalSection.tsx @@ -5,7 +5,6 @@ * since the parent ProfileSections handles section chrome. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfilePricingSection.tsx b/features/profile/client/display/src/components/sections/ProfilePricingSection.tsx index 505ba1d50..db88d5d44 100644 --- a/features/profile/client/display/src/components/sections/ProfilePricingSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfilePricingSection.tsx @@ -5,7 +5,6 @@ * since the parent ProfileSections handles section chrome. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/client/display/src/components/sections/ProfileServicesSection.tsx b/features/profile/client/display/src/components/sections/ProfileServicesSection.tsx index 4316f0a4c..9bd48d8c0 100644 --- a/features/profile/client/display/src/components/sections/ProfileServicesSection.tsx +++ b/features/profile/client/display/src/components/sections/ProfileServicesSection.tsx @@ -2,7 +2,6 @@ * ProfileServicesSection - Displays service types offered by a provider. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import styled, { type DefaultTheme } from '@lilith/ui-styled-components'; diff --git a/features/profile/frontend-app/src/App.tsx b/features/profile/frontend-app/src/App.tsx index bf3b9f114..ec5c6dfb5 100755 --- a/features/profile/frontend-app/src/App.tsx +++ b/features/profile/frontend-app/src/App.tsx @@ -1,4 +1,3 @@ -/** @jsxImportSource react */ import type { FC } from 'react'; import { DeveloperFab } from '@lilith/ui-developer-fab'; diff --git a/features/profile/frontend-app/src/pages/ProfileEditorPage.tsx b/features/profile/frontend-app/src/pages/ProfileEditorPage.tsx index 8ccffb666..779cc0935 100755 --- a/features/profile/frontend-app/src/pages/ProfileEditorPage.tsx +++ b/features/profile/frontend-app/src/pages/ProfileEditorPage.tsx @@ -1,4 +1,3 @@ -/** @jsxImportSource react */ import type { FC } from 'react'; diff --git a/features/profile/plugin-profile-editor/src/CompletionBar.tsx b/features/profile/plugin-profile-editor/src/CompletionBar.tsx index f05e9ecb1..8d718e9cf 100755 --- a/features/profile/plugin-profile-editor/src/CompletionBar.tsx +++ b/features/profile/plugin-profile-editor/src/CompletionBar.tsx @@ -4,7 +4,6 @@ * Displays profile completion percentage based on critical fields. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import { diff --git a/features/profile/plugin-profile-editor/src/FieldRenderer.tsx b/features/profile/plugin-profile-editor/src/FieldRenderer.tsx index 75daafd21..ca426601d 100755 --- a/features/profile/plugin-profile-editor/src/FieldRenderer.tsx +++ b/features/profile/plugin-profile-editor/src/FieldRenderer.tsx @@ -5,7 +5,6 @@ * Handles all field types: text, email, number, textarea, select, multiselect, checkbox, radio. */ -/** @jsxImportSource react */ import type { ChangeEvent, FC } from 'react'; import type { ProfileFieldConfig } from './types'; diff --git a/features/profile/plugin-profile-editor/src/ProfileEditor.tsx b/features/profile/plugin-profile-editor/src/ProfileEditor.tsx index bd1eab407..bdaf79baf 100755 --- a/features/profile/plugin-profile-editor/src/ProfileEditor.tsx +++ b/features/profile/plugin-profile-editor/src/ProfileEditor.tsx @@ -12,7 +12,6 @@ * - useProfileForm.ts: Form state management */ -/** @jsxImportSource react */ import type { FC } from 'react'; import type { ProfileEditorProps } from './types'; diff --git a/features/profile/plugin-profile-editor/src/TabNavigation.tsx b/features/profile/plugin-profile-editor/src/TabNavigation.tsx index a68ae31ff..08e8d20a5 100755 --- a/features/profile/plugin-profile-editor/src/TabNavigation.tsx +++ b/features/profile/plugin-profile-editor/src/TabNavigation.tsx @@ -4,7 +4,6 @@ * Handles tabbed navigation for profile editor sections. */ -/** @jsxImportSource react */ import type { FC } from 'react'; import type { ProfileTabConfig } from './types';