diff --git a/front/src/modules/people/components/PeopleCompanyCell.tsx b/front/src/modules/people/components/PeopleCompanyCell.tsx index afedcaa09..73687f771 100644 --- a/front/src/modules/people/components/PeopleCompanyCell.tsx +++ b/front/src/modules/people/components/PeopleCompanyCell.tsx @@ -17,11 +17,15 @@ export type OwnProps = { export function PeopleCompanyCell({ people }: OwnProps) { const [isCreating] = useRecoilScopedState(isCreateModeScopedState); - return isCreating ? ( - - ) : ( + return ( } + editModeContent={ + isCreating ? ( + + ) : ( + + ) + } nonEditModeContent={ border: none; color: ${props.theme.text80}; outline: none; + padding: ${props.theme.spacing(0)} ${props.theme.spacing(2)}; &::placeholder, &::-webkit-input-placeholder {