fix(kubernetes): gate cluster-setup form render on ingress classes query [QE-4214] (#3052)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Phil Calder
2026-06-29 19:41:41 +12:00
committed by GitHub
parent 846ad6e5c8
commit 5c1c18b8f0
@@ -48,7 +48,8 @@ export function ConfigureForm() {
ingressClasses
);
if (!initialValues || !environment) {
// Wait for ingress classes before rendering; enableReinitialize would otherwise re-seed the form once the late query lands and discard in-flight edits (QE-4214)
if (!initialValues || !environment || ingressClassesQuery.isLoading) {
return null;
}