From 043337f87ed7f56a47be26be683087c9932d8b05 Mon Sep 17 00:00:00 2001 From: Ian Date: Thu, 2 May 2024 12:15:16 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20Merge=20PR=20#69437=20Typo=20s/c?= =?UTF-8?q?omponentWillUmount/componentWillUnmount/=20by=20@iangrunert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/react-form/v2/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-form/v2/index.d.ts b/types/react-form/v2/index.d.ts index ccb85e14df5e78..3f94ad326d9bd0 100644 --- a/types/react-form/v2/index.d.ts +++ b/types/react-form/v2/index.d.ts @@ -94,7 +94,7 @@ export class Form extends React.Component< getChildContext(): FormContext; componentWillMount(): void; componentWillReceiveProps(nextProps: Readonly>, nextContext: any): void; - componentWillUmount(): void; + componentWillUnmount(): void; render(): RenderReturn; }