fix(config): stop owner-display barrel cycles

This commit is contained in:
Vincent Koc
2026-04-09 02:01:27 +01:00
parent 91ad1e5fc5
commit 20f2f39d30
4 changed files with 4 additions and 4 deletions

View File

@@ -1,9 +1,9 @@
import { afterEach, describe, expect, it, vi } from "vitest";
import type { OpenClawConfig } from "./config.js";
import {
type OwnerDisplaySecretPersistState,
persistGeneratedOwnerDisplaySecret,
} from "./io.owner-display-secret.js";
import type { OpenClawConfig } from "./types.openclaw.js";
function createState(): OwnerDisplaySecretPersistState {
return {

View File

@@ -1,4 +1,4 @@
import type { OpenClawConfig } from "./config.js";
import type { OpenClawConfig } from "./types.openclaw.js";
export type OwnerDisplaySecretPersistState = {
pendingByPath: Map<string, string>;