mirror of https://github.com/openclaw/openclaw.git
fix: restore effective setup wizard lazy import
This commit is contained in:
parent
4c8678c0b4
commit
f49fc633ac
|
|
@ -88,7 +88,7 @@ export async function promptTelegramAllowFromForAccount(params: {
|
|||
);
|
||||
}
|
||||
const { promptResolvedAllowFrom } =
|
||||
await import("../../../src/channels/plugins/setup-wizard-helpers.js");
|
||||
await import("../../../src/channels/plugins/setup-wizard-helpers.runtime.js");
|
||||
const unique = await promptResolvedAllowFrom({
|
||||
prompter: params.prompter,
|
||||
existing: resolved.config.allowFrom ?? [],
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
export { promptResolvedAllowFrom } from "./setup-wizard-helpers.js";
|
||||
Loading…
Reference in New Issue