From c929cecb119c30c7e529e185c3c2bc5a8b082362 Mon Sep 17 00:00:00 2001 From: Simon Backx Date: Thu, 1 Jun 2023 14:43:34 +0200 Subject: [PATCH] Fixed linting issues in Frame component --- ghost/signup-form/src/components/Frame.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 };