diff --git a/app/src/main/java/io/xpipe/app/comp/store/GuiDsStoreCreator.java b/app/src/main/java/io/xpipe/app/comp/store/GuiDsStoreCreator.java index 913bc8fa4..fae8ab4f2 100644 --- a/app/src/main/java/io/xpipe/app/comp/store/GuiDsStoreCreator.java +++ b/app/src/main/java/io/xpipe/app/comp/store/GuiDsStoreCreator.java @@ -223,6 +223,9 @@ public class GuiDsStoreCreator extends MultiStepComp.Step> { return provider.getValue() == null || store.getValue() == null || !store.getValue().isComplete() + // When switching providers, both observables change one after another. + // So temporarily there might be a store class mismatch + || provider.getValue().getStoreClasses().stream().noneMatch(aClass -> aClass.isAssignableFrom(store.getValue().getClass())) || provider.getValue().createInsightsMarkdown(store.getValue()) == null; }, provider,