From ca7b87a967ebc842ecef491e30cf33d9c74b4eb0 Mon Sep 17 00:00:00 2001
From: enes <enes@nostrdev.com>
Date: Mon, 23 Dec 2024 13:42:39 +0100
Subject: [PATCH] refactor(create): reduce minimum field threshold size

---
 src/components/DrawPDFFields/index.tsx | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/DrawPDFFields/index.tsx b/src/components/DrawPDFFields/index.tsx
index 25e4b6a..2a43b3b 100644
--- a/src/components/DrawPDFFields/index.tsx
+++ b/src/components/DrawPDFFields/index.tsx
@@ -24,8 +24,8 @@ import { FileDivider } from '../FileDivider'
 import { Counterpart } from './internal/Counterpart'
 
 const MINIMUM_RECT_SIZE = {
-  width: 21,
-  height: 21
+  width: 10,
+  height: 10
 } as const
 
 const DEFAULT_START_SIZE = {