소스 검색

banner modal hotfix (#4622)

jusrhee 2 년 전
부모
커밋
22e84667e4
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      dashboard/src/main/home/Home.tsx

+ 11 - 0
dashboard/src/main/home/Home.tsx

@@ -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} />
           <ModalHandler setRefreshClusters={setForceRefreshClusters} />
           {currentOverlay &&
           {currentOverlay &&
             createPortal(
             createPortal(