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:
@@ -106,12 +106,13 @@ export async function fetchImageAssetBlob(
|
||||
const response = await (
|
||||
shouldUseDesktopAssetFetch(candidate)
|
||||
? fetchDesktopApiURL(candidate, {
|
||||
signal: mergeAbortSignals([
|
||||
options.signal,
|
||||
timeoutSignal(options.timeoutMs ?? 10_000),
|
||||
]),
|
||||
signal: mergeAbortSignals([options.signal, timeoutSignal(options.timeoutMs ?? 10_000)]),
|
||||
})
|
||||
: adapterFetch(candidate, {}, { timeoutMs: options.timeoutMs ?? 10_000, signal: options.signal })
|
||||
: adapterFetch(
|
||||
candidate,
|
||||
{},
|
||||
{ timeoutMs: options.timeoutMs ?? 10_000, signal: options.signal },
|
||||
)
|
||||
).catch(() => null)
|
||||
if (!response?.ok) {
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user