From b8b5d6c449f36aeba4b51c8f8a736f48258efec9 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sun, 28 Jul 2024 15:16:48 +0200 Subject: [PATCH] Use Classnames syntax for showFirstRow classes augmentation --- src/back/routes/common/show-first-row/show-first-row.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/back/routes/common/show-first-row/show-first-row.tsx b/src/back/routes/common/show-first-row/show-first-row.tsx index 688ae18..5c4dbb4 100644 --- a/src/back/routes/common/show-first-row/show-first-row.tsx +++ b/src/back/routes/common/show-first-row/show-first-row.tsx @@ -40,7 +40,7 @@ export async function showFirstRow({ show_more_button: JSX.Element, show_less_button: JSX.Element ) => JSX.Element; - classes?: string[]; + classes?: classNames.ArgumentArray; }): Promise { const id = showFirstRowIds.next().value; const checkbox_id = "show-first-row__checkbox--" + id;