feat: check userEmail value to prevent label and text overlap

This commit is contained in:
amhsirak
2024-11-05 23:13:55 +05:30
parent ce4430839c
commit d56b131660

View File

@@ -123,7 +123,7 @@ export const RobotSettingsModal = ({ isOpen, handleStart, handleClose, initialSe
<TextField
label="Created By User"
key="Created By User"
value={userEmail}
value={userEmail ? userEmail : ''}
InputProps={{
readOnly: true,
}}