fix: fix app config same key values (#16215)

Co-authored-by: Amit Sharma <74371312+Amit91848@users.noreply.github.com>
This commit is contained in:
Shreya Agarwal
2024-08-20 07:33:24 +00:00
committed by GitHub
co-authored by Amit Sharma
parent 50c4578c2e
commit 9001eb7795
+12 -10
View File
@@ -315,16 +315,18 @@ const AdminAppsListContainer = () => {
/>
))}
</List>
<EditKeysModal
keys={modalState.keys}
dirName={modalState.dirName}
handleModelClose={handleModelClose}
isOpen={modalState.isOpen === "editKeys"}
slug={modalState.slug}
type={modalState.type}
fromEnabled={modalState.fromEnabled}
appName={modalState.appName}
/>
{modalState.isOpen === "editKeys" && (
<EditKeysModal
keys={modalState.keys}
dirName={modalState.dirName}
handleModelClose={handleModelClose}
isOpen={modalState.isOpen === "editKeys"}
slug={modalState.slug}
type={modalState.type}
fromEnabled={modalState.fromEnabled}
appName={modalState.appName}
/>
)}
</>
);
};