diff --git a/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ConstituentaTab.tsx b/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ConstituentaTab.tsx deleted file mode 100644 index 43a5ed0f..00000000 --- a/rsconcept/frontend/src/dialogs/DlgConstituentaTemplate/ConstituentaTab.tsx +++ /dev/null @@ -1,76 +0,0 @@ -'use client'; - -import RSInput from '@/components/RSInput'; -import SelectSingle from '@/components/ui/SelectSingle'; -import TextArea from '@/components/ui/TextArea'; -import TextInput from '@/components/ui/TextInput'; -import { CstType, ICstCreateData } from '@/models/rsform'; -import { labelCstType } from '@/utils/labels'; -import { SelectorCstType } from '@/utils/selectors'; - -interface ConstituentaTabProps { - state: ICstCreateData; - partialUpdate: React.Dispatch>; -} - -function ConstituentaTab({ state, partialUpdate }: ConstituentaTabProps) { - return ( - <> -
- partialUpdate({ cst_type: data?.value ?? CstType.TERM })} - /> - partialUpdate({ alias: event.target.value })} - /> -
-