From 79f0e8433a0473f73cd1f1bfcd09743db56ac02a Mon Sep 17 00:00:00 2001 From: luiqor Date: Sun, 24 Nov 2024 12:49:52 +0200 Subject: [PATCH] remove void for dispatch in debouncedUpdateProfileData --- src/containers/edit-profile/profile-tab/ProfileTab.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/edit-profile/profile-tab/ProfileTab.tsx b/src/containers/edit-profile/profile-tab/ProfileTab.tsx index fb74d0096..eff2bd255 100644 --- a/src/containers/edit-profile/profile-tab/ProfileTab.tsx +++ b/src/containers/edit-profile/profile-tab/ProfileTab.tsx @@ -67,7 +67,7 @@ const ProfileTab: FC = () => { } } - void dispatch(updateProfileData(payload)) + dispatch(updateProfileData(payload)) }, 300) const { hash, pathname } = useLocation()