Skip to content

Commit

Permalink
banner modal hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jusrhee committed May 8, 2024
1 parent bcb1261 commit 706e553
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions dashboard/src/main/home/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,17 @@ const Home: React.FC<Props> = (props) => {
)}
</>
)}
{showBillingModal && (
<BillingModal
back={() => {
setShowBillingModal(false);
}}
onCreate={async () => {
setShowBillingModal(false);
window.location.reload();
}}
/>
)}
<ModalHandler setRefreshClusters={setForceRefreshClusters} />
{currentOverlay &&
createPortal(
Expand Down

0 comments on commit 706e553

Please sign in to comment.