From da4c79b5aeb3c589527e17ad29610a8e3f929b79 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Wed, 22 Jun 2022 21:52:15 -0400 Subject: [PATCH] fix(Field): title -> label --- src/deck-components/Field.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deck-components/Field.tsx b/src/deck-components/Field.tsx index a752e0c..b836370 100644 --- a/src/deck-components/Field.tsx +++ b/src/deck-components/Field.tsx @@ -2,7 +2,7 @@ import { FC, HTMLAttributes, ReactNode, RefAttributes } from 'react'; import { findModuleChild } from '../webpack'; export interface FieldProps extends HTMLAttributes { - title?: string; + label?: string; description?: boolean; disabled?: boolean; icon?: ReactNode;