diff --git a/ghost/signup-form/src/components/Frame.tsx b/ghost/signup-form/src/components/Frame.tsx index 5b7417d140..df73b69e5e 100644 --- a/ghost/signup-form/src/components/Frame.tsx +++ b/ghost/signup-form/src/components/Frame.tsx @@ -1,8 +1,8 @@ import IFrame from './IFrame'; import React, {useCallback, useState} from 'react'; import styles from '../styles/iframe.css?inline'; -import {useAppContext} from '../AppContext'; import {isMinimal} from '../utils/helpers'; +import {useAppContext} from '../AppContext'; type FrameProps = { children: React.ReactNode @@ -99,7 +99,6 @@ const FullHeightFrame: React.FC = ({children, style, title} ); }; - type TailwindFrameProps = ResizableFrameProps & { onResize?: (el: HTMLElement) => void };