Skip to content

Commit

Permalink
feat:edit-ecosystem-modal
Browse files Browse the repository at this point in the history
Signed-off-by: pranalidhanavade <[email protected]>
  • Loading branch information
pranalidhanavade committed Oct 10, 2023
1 parent 1365df3 commit 8455cd2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/components/EditEcosystemOrgModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const EditPopupModal = (props: EditEntityModalProps) => {
} else {
const response = await updateEcosystem(entityData);
const { data } = response as AxiosResponse;
console.log('data::', data);

if (data?.statusCode === apiStatusCodes.API_STATUS_SUCCESS) {
if (props?.onEditSuccess) {
props?.onEditSuccess();
Expand All @@ -193,8 +193,6 @@ const EditPopupModal = (props: EditEntityModalProps) => {
setLoading(false);
}
};
console.log(6566, initialEntityData)

return (
<Modal show={props.openModal} onClose={() => {
setLogoImage({
Expand Down

0 comments on commit 8455cd2

Please sign in to comment.