Skip to content

Commit 84b3385

Browse files
committed
fix: update ui/copy.js imports to ui/ui-copy.js in extracted login modules
audit-29 extracted these files before audit-17 renamed ui/copy.ts -> ui/ui-copy.ts. Update all four files to use the canonical path post-rename.
1 parent c363d78 commit 84b3385

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/codex-manager/login-action-panel.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import { stdin as input, stdout as output } from "node:process";
1+
import { stdin as input, stdout as output } from "node:process";
22
import { createInterface } from "node:readline/promises";
33
import type { DashboardDisplaySettings } from "../dashboard-settings.js";
44
import { ANSI } from "../ui/ansi.js";
5-
import { UI_COPY } from "../ui/copy.js";
5+
import { UI_COPY } from "../ui/ui-copy.js";
66
import {
77
stringifyLogArgs,
88
stylePromptText,

lib/codex-manager/login-flow.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isBrowserLaunchSuppressed } from "../auth/browser.js";
1+
import { isBrowserLaunchSuppressed } from "../auth/browser.js";
22
import { promptAddAnotherAccount, promptLoginMode } from "../cli.js";
33
import { ACCOUNT_LIMITS } from "../constants.js";
44
import { loadDashboardDisplaySettings } from "../dashboard-settings.js";
@@ -16,7 +16,7 @@ import {
1616
setStoragePath,
1717
StorageError,
1818
} from "../storage.js";
19-
import { UI_COPY } from "../ui/copy.js";
19+
import { UI_COPY } from "../ui/ui-copy.js";
2020
import { confirm } from "../ui/confirm.js";
2121
import { stylePromptText } from "./formatters/index.js";
2222
import { runHealthCheck } from "./health-check.js";

lib/codex-manager/login-menu-actions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { stdin as input, stdout as output } from "node:process";
1+
import { stdin as input, stdout as output } from "node:process";
22
import { sanitizeEmail } from "../accounts.js";
33
import type { promptLoginMode } from "../cli.js";
44
import { MODEL_FAMILIES } from "../prompts/codex.js";
@@ -11,7 +11,7 @@ import {
1111
setStoragePath,
1212
withAccountStorageTransaction,
1313
} from "../storage.js";
14-
import { UI_COPY } from "../ui/copy.js";
14+
import { UI_COPY } from "../ui/ui-copy.js";
1515
import { getUiRuntimeOptions } from "../ui/runtime.js";
1616
import { type MenuItem, select } from "../ui/select.js";
1717
import { runSwitchCommand } from "./commands/switch.js";

lib/codex-manager/login-oauth.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { stdin as input, stdout as output } from "node:process";
1+
import { stdin as input, stdout as output } from "node:process";
22
import { createInterface } from "node:readline/promises";
33
import {
44
extractAccountEmail,
@@ -30,7 +30,7 @@ import {
3030
withAccountStorageTransaction,
3131
} from "../storage.js";
3232
import type { AccountIdSource, TokenResult } from "../types.js";
33-
import { UI_COPY } from "../ui/copy.js";
33+
import { UI_COPY } from "../ui/ui-copy.js";
3434
import {
3535
type AccountPoolWriteOutcome,
3636
applyAccountPoolResults,

0 commit comments

Comments
 (0)