style: format web apps with prettier and sort imports
Apply repo-wide Prettier/lint normalization across admin-web, desktop-client and ops-web: single quotes, no semicolons, trailing commas, consistent line wrapping, and import ordering. Also drop an unused brand-logo import in DesktopShell.vue. No behavior changes — formatting only. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import type { Cookie, Session, WebContents } from 'electron/main'
|
||||
|
||||
import { normalizeRemoteUrl } from '../common'
|
||||
import type { AccountHealthProfile, AuthProbeResult } from '../../auth-types'
|
||||
import type { GenericAIPageState } from '../../generic-ai-auth'
|
||||
import { normalizeRemoteUrl } from '../common'
|
||||
|
||||
// Doubao binding rules are deliberately isolated here.
|
||||
// Doubao can chat anonymously, while Geo Rankly requires a real logged-in Doubao
|
||||
@@ -118,8 +118,8 @@ export function doubaoHasBoundAccountPageSignal(
|
||||
): boolean {
|
||||
return Boolean(
|
||||
pageState &&
|
||||
pageState.strongAuthSignalCount >= 2 &&
|
||||
(pageState.displayName || pageState.avatarUrl),
|
||||
pageState.strongAuthSignalCount >= 2 &&
|
||||
(pageState.displayName || pageState.avatarUrl),
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user