Skip to content

Commit b971e29

Browse files
committed
style: fix verify-flagged cache restore indentation
1 parent d3178f2 commit b971e29

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

lib/runtime/verify-flagged.ts

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -88,25 +88,25 @@ export async function verifyRuntimeFlaggedAccounts(deps: {
8888
? cached.refreshToken.trim()
8989
: undefined;
9090
if (refreshToken) {
91-
const resolved = deps.resolveTokenSuccessAccount({
92-
type: "success",
93-
access: cached.accessToken,
94-
refresh: refreshToken,
95-
expires: cached.expiresAt,
96-
multiAccount: true,
97-
});
98-
if (!resolved.accountIdOverride && flagged.accountId) {
99-
resolved.accountIdOverride = flagged.accountId;
100-
resolved.accountIdSource = flagged.accountIdSource ?? "manual";
101-
}
102-
if (!resolved.accountLabel && flagged.accountLabel) {
103-
resolved.accountLabel = flagged.accountLabel;
104-
}
105-
state.restored.push(resolved);
106-
deps.showLine(
107-
`[${i + 1}/${flaggedStorage.accounts.length}] ${label}: RESTORED (Codex CLI cache)`,
108-
);
109-
continue;
91+
const resolved = deps.resolveTokenSuccessAccount({
92+
type: "success",
93+
access: cached.accessToken,
94+
refresh: refreshToken,
95+
expires: cached.expiresAt,
96+
multiAccount: true,
97+
});
98+
if (!resolved.accountIdOverride && flagged.accountId) {
99+
resolved.accountIdOverride = flagged.accountId;
100+
resolved.accountIdSource = flagged.accountIdSource ?? "manual";
101+
}
102+
if (!resolved.accountLabel && flagged.accountLabel) {
103+
resolved.accountLabel = flagged.accountLabel;
104+
}
105+
state.restored.push(resolved);
106+
deps.showLine(
107+
`[${i + 1}/${flaggedStorage.accounts.length}] ${label}: RESTORED (Codex CLI cache)`,
108+
);
109+
continue;
110110
}
111111
}
112112

0 commit comments

Comments
 (0)