style: fix prettier formatting issues
Deploy / Build Production Runtime Images (push) Has been skipped
Deploy / Deploy Production (push) Has been skipped
Deploy / Production Browser E2E (push) Has been skipped
Deploy / Deploy Staging (push) Failing after 192h26m58s
CI/CD Pipeline / Frontend Lint (push) Failing after 192h27m37s
CI/CD Pipeline / Validate Code Quality And Tests (push) Failing after 192h27m46s

This commit is contained in:
CI Test
2026-07-01 12:26:48 +08:00
parent 3e10860f02
commit f0eed0ca3f
45 changed files with 1339 additions and 409 deletions
+2 -4
View File
@@ -116,7 +116,7 @@ const delay = (ms: number) => new Promise((r) => setTimeout(r, ms));
/** 获取指定平台的账号列表 */
export async function getAccountsByPlatform(
platformId: PlatformId
platformId: PlatformId,
): Promise<Account[]> {
await delay(300);
return MOCK_ACCOUNTS.filter((a) => a.platform_id === platformId);
@@ -129,9 +129,7 @@ export async function getAllAccounts(): Promise<Account[]> {
}
/** 绑定新账号 */
export async function bindAccount(
data: BindAccountRequest
): Promise<Account> {
export async function bindAccount(data: BindAccountRequest): Promise<Account> {
await delay(500);
const newAccount: Account = {
id: `acc-${Date.now()}`,