From da345d000205189427ff689b83faec88c0d658fa Mon Sep 17 00:00:00 2001 From: Gregory Moskaliuk Date: Sun, 7 Jun 2026 12:28:54 +0200 Subject: [PATCH] refactor(text-input): omit children from props and spread rest last --- src/EnrichedMarkdownTextInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/EnrichedMarkdownTextInput.tsx b/src/EnrichedMarkdownTextInput.tsx index 6af565c1..39f65df6 100644 --- a/src/EnrichedMarkdownTextInput.tsx +++ b/src/EnrichedMarkdownTextInput.tsx @@ -113,7 +113,7 @@ export interface EnrichedMarkdownTextInputInstance { } export interface EnrichedMarkdownTextInputProps - extends Omit { + extends Omit { ref?: RefObject; defaultValue?: string; placeholder?: string; @@ -408,7 +408,6 @@ export const EnrichedMarkdownTextInput = ({ return ( ); };