Skip to content

Commit

Permalink
fix(app subscription): fixed closing on overlay on click of close icon (
Browse files Browse the repository at this point in the history
  • Loading branch information
lavanya-bmw authored Jan 13, 2025
1 parent f361fed commit 4563080
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import './style.scss'
import type { store } from 'features/store'
import { setSuccessType } from 'features/appSubscription/slice'
import { Link } from 'react-router-dom'
import { closeOverlay } from 'features/control/overlay'
import { useFetchTechnicalUserProfilesQuery } from 'features/appManagement/apiSlice'

const TentantHelpURL =
Expand Down Expand Up @@ -169,7 +168,9 @@ const ActivateSubscriptionOverlay = ({
color="success"
/>
}
onCloseWithIcon={() => dispatch(closeOverlay())}
onCloseWithIcon={() => {
handleOverlayClose()
}}
/>
<DialogContent>
{loading ? (
Expand Down

0 comments on commit 4563080

Please sign in to comment.