Skip to content

Commit

Permalink
fix: load export dialog after envs loaded (#3234)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Mar 8, 2023
1 parent 8250728 commit 5957d8f
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -673,7 +673,9 @@ export const ProjectFeatureToggles = ({
}
/>
<ConditionallyRender
condition={Boolean(uiConfig?.flags?.featuresExportImport)}
condition={
Boolean(uiConfig?.flags?.featuresExportImport) && !loading
}
show={
<ExportDialog
showExportDialog={showExportDialog}
Expand Down

0 comments on commit 5957d8f

Please sign in to comment.