Skip to content

Commit d72b376

Browse files
committed
fix(mails): coco-4040, fix value
1 parent 4c08b51 commit d72b376

File tree

1 file changed

+1
-1
lines changed
  • src/framework/modules/mails/components/fields/contact

1 file changed

+1
-1
lines changed

src/framework/modules/mails/components/fields/contact/component.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const MailsContactField = (props: MailsContactFieldProps) => {
265265
};
266266

267267
const heightResults = React.useMemo(() => {
268-
return filteredUsers.length * HEIGHT_RECIPIENT_CONTAINER + HEIGHT_HEADER_RESULTS + UI_SIZES.spacing.small * 2 + 100;
268+
return filteredUsers.length * HEIGHT_RECIPIENT_CONTAINER + HEIGHT_HEADER_RESULTS + UI_SIZES.spacing.small * 2 + 170;
269269
}, [filteredUsers]);
270270

271271
return (

0 commit comments

Comments
 (0)