fix: add pool not work

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent c467280170
commit f1bb305cbc
18 changed files with 185 additions and 79 deletions
@@ -244,7 +244,11 @@ const ClusterCreate = () => {
return moduleKeys.map((key) => {
const ModuleComponent = moduleRegistry[key];
return ModuleComponent ? (
<ModuleComponent key={key} registrationInfo={registrationInfo} />
<ModuleComponent
key={key}
registrationInfo={registrationInfo}
provider={extraData.provider}
/>
) : null;
});
};