diff --git a/microfrontends/SignDocuments/src/Component/WidgetComponent/NameModal.js b/microfrontends/SignDocuments/src/Component/WidgetComponent/NameModal.js
index 38652f25d..5ae7cba3d 100644
--- a/microfrontends/SignDocuments/src/Component/WidgetComponent/NameModal.js
+++ b/microfrontends/SignDocuments/src/Component/WidgetComponent/NameModal.js
@@ -109,7 +109,8 @@ const NameModal = (props) => {
required
/>
- {props.widgetName === "text" && (
+ {(props.defaultdata?.type === "text" ||
+ props.widgetName === "text") && (
<>
>
@@ -234,7 +243,8 @@ const NameModal = (props) => {
})}
- {props.widgetName === "text" && (
+ {(props.defaultdata?.type === "text" ||
+ props?.widgetName === "text") && (