We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31c2b50 commit 4e4cfc2Copy full SHA for 4e4cfc2
src/components/Clusters/components/AddClusterDialog.tsx
@@ -24,7 +24,6 @@ export function AddClusterDialog() {
24
className="add-cluster-wizard-dialog"
25
headerText={t('clusters.add.title')}
26
onClose={() => setShowWizard(false)}
27
- ref={dialogRef}
28
>
29
<ErrorBoundary>
30
{showWizard ? (
@@ -34,6 +33,7 @@ export function AddClusterDialog() {
34
33
dialogRef={dialogRef}
35
/>
36
) : null}
+ <div ref={dialogRef}></div>
37
</ErrorBoundary>
38
</Dialog>
39
);
0 commit comments