1
0
forked from baron/baron-sso

fix(adminfront): resolve biome lint and formatting failures

This commit is contained in:
2026-05-29 16:21:27 +09:00
parent 8d2e2c58fe
commit 58a3be9a34
2 changed files with 5 additions and 2 deletions

View File

@@ -669,7 +669,7 @@ function UserDetailPage() {
.map((e) => e.trim()) .map((e) => e.trim())
.filter((e) => e.includes("@")) .filter((e) => e.includes("@"))
: [], : [],
} as any, } as UserFormValues["metadata"],
}); });
const isUserHanmacFamily = isHanmacFamilyUser( const isUserHanmacFamily = isHanmacFamilyUser(
user, user,

View File

@@ -721,7 +721,10 @@ test.describe("User Management", () => {
await expect(page.locator("input#department")).toHaveCount(0); await expect(page.locator("input#department")).toHaveCount(0);
await expect(page.getByText(/대표 소속/i)).toHaveCount(0); await expect(page.getByText(/대표 소속/i)).toHaveCount(0);
await page.getByRole("tabpanel").getByRole("button", { name: /^추가$/i }).click(); await page
.getByRole("tabpanel")
.getByRole("button", { name: /^추가$/i })
.click();
await expect(page.getByTestId("appointment-row-0")).toBeVisible(); await expect(page.getByTestId("appointment-row-0")).toBeVisible();
await expect( await expect(
page.getByTestId("appointment-tenant-owner-line-0"), page.getByTestId("appointment-tenant-owner-line-0"),