From bec2bc5334ef0e6d6106317be2c0aa18a38a3179 Mon Sep 17 00:00:00 2001 From: Hubert Koster Date: Tue, 22 Aug 2023 16:13:39 +0200 Subject: [PATCH] chore: fixing markup bug --- .../dashboard/components/Dialogs/UpdateAppDialog/index.tsx | 2 +- src/features/dashboard/register-app/index.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/dashboard/components/Dialogs/UpdateAppDialog/index.tsx b/src/features/dashboard/components/Dialogs/UpdateAppDialog/index.tsx index 6cb34973f..aaf55ea8f 100644 --- a/src/features/dashboard/components/Dialogs/UpdateAppDialog/index.tsx +++ b/src/features/dashboard/components/Dialogs/UpdateAppDialog/index.tsx @@ -70,7 +70,7 @@ const UpdateAppDialog = ({ app, onClose }: IUpdateAppDialog) => { scopes: selectedScopes, }); }, - [updateApp], + [updateApp, currentLoginAccount.name], ); const cancelButton = () => { diff --git a/src/features/dashboard/register-app/index.tsx b/src/features/dashboard/register-app/index.tsx index c1205a489..040ac423f 100644 --- a/src/features/dashboard/register-app/index.tsx +++ b/src/features/dashboard/register-app/index.tsx @@ -39,7 +39,7 @@ const AppRegistration = () => { }); setFormIsCleared(true); }, - [registerApp], + [registerApp, currentLoginAccount.name], ); return (