fix(deps): update dependency prettier to ^3.7.4 (#4582)

Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
This commit is contained in:
homarr-renovate[bot]
2025-12-08 14:19:46 +01:00
committed by GitHub
parent 4f92e5265a
commit 54809823e9
12 changed files with 51 additions and 43 deletions

View File

@@ -10,8 +10,10 @@ interface BaseSelectItem {
label: string;
}
export interface SelectWithCustomItemsProps<TSelectItem extends BaseSelectItem>
extends Pick<SelectProps, "label" | "error" | "defaultValue" | "value" | "onChange" | "placeholder" | "clearable"> {
export interface SelectWithCustomItemsProps<TSelectItem extends BaseSelectItem> extends Pick<
SelectProps,
"label" | "error" | "defaultValue" | "value" | "onChange" | "placeholder" | "clearable"
> {
data: TSelectItem[];
description?: string;
withAsterisk?: boolean;