From 4ded214991c04d4722c727a1b19b0b46976ff4c9 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 2 Sep 2024 14:01:35 +0200 Subject: [PATCH] EditIdentity: clear the reason text on submit --- src/features/edit-identity/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/features/edit-identity/index.tsx b/src/features/edit-identity/index.tsx index ab9436241..89eae1e45 100644 --- a/src/features/edit-identity/index.tsx +++ b/src/features/edit-identity/index.tsx @@ -70,6 +70,7 @@ const EditIdentity: React.FC = () => { queryKey: ['names', 'pending'], }); setUsername(''); + setReason(''); }, }); };