diff --git a/packages/shared/src/features/profile/components/stack/UserStackModal.tsx b/packages/shared/src/features/profile/components/stack/UserStackModal.tsx index 08c604d772..a7913cb2de 100644 --- a/packages/shared/src/features/profile/components/stack/UserStackModal.tsx +++ b/packages/shared/src/features/profile/components/stack/UserStackModal.tsx @@ -161,6 +161,7 @@ export function UserStackModal({ maxLength={255} valid={!errors.title} hint={errors.title?.message} + disabled={isEditing} onChange={(e) => { setValue('title', e.target.value); if (!isEditing) { diff --git a/packages/shared/src/features/profile/components/tools/UserToolModal.tsx b/packages/shared/src/features/profile/components/tools/UserToolModal.tsx index 85ab8c743b..0fb9519f64 100644 --- a/packages/shared/src/features/profile/components/tools/UserToolModal.tsx +++ b/packages/shared/src/features/profile/components/tools/UserToolModal.tsx @@ -146,6 +146,7 @@ export function UserToolModal({ maxLength={255} valid={!errors.title} hint={errors.title?.message} + disabled={isEditing} onChange={(e) => { setValue('title', e.target.value); if (!isEditing) {