0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Fixed type issue on AdminX user modal

refs. https://github.com/TryGhost/Team/issues/3150
This commit is contained in:
Peter Zimon 2023-05-25 13:18:01 +02:00
parent d85286ecf2
commit c01af74265

View file

@ -10,7 +10,7 @@ import TextField from '../../../../admin-x-ds/global/TextField';
import Toggle from '../../../../admin-x-ds/global/Toggle';
interface CustomHeadingProps {
children?: string;
children?: React.ReactNode;
}
const CustomHeader: React.FC<CustomHeadingProps> = ({children}) => {