diff --git a/rsconcept/frontend/src/components/RSInput/RSInput.tsx b/rsconcept/frontend/src/components/RSInput/RSInput.tsx index ebc673f0..f5f1763b 100644 --- a/rsconcept/frontend/src/components/RSInput/RSInput.tsx +++ b/rsconcept/frontend/src/components/RSInput/RSInput.tsx @@ -10,7 +10,6 @@ import { forwardRef, useCallback, useMemo, useRef } from 'react'; import Label from '@/components/ui/Label'; import { useConceptOptions } from '@/context/ConceptOptionsContext'; -import { getFontClassName } from '@/models/miscellaneousAPI'; import { ConstituentaID, IRSForm } from '@/models/rsform'; import { generateAlias, getCstTypePrefix, guessCstType } from '@/models/rsformAPI'; import { extractGlobals } from '@/models/rslangAPI'; @@ -64,7 +63,7 @@ const RSInput = forwardRef( }, ref ) => { - const { darkMode, colors, mathFont } = useConceptOptions(); + const { darkMode, colors } = useConceptOptions(); const internalRef = useRef(null); const thisRef = useMemo(() => (!ref || typeof ref === 'function' ? internalRef : ref), [internalRef, ref]); @@ -152,7 +151,7 @@ const RSInput = forwardRef(