diff --git a/apps/client/src/widgets/icon_list.ts b/apps/client/src/widgets/icon_list.ts index cef6eaf34..367b360ce 100644 --- a/apps/client/src/widgets/icon_list.ts +++ b/apps/client/src/widgets/icon_list.ts @@ -2102,8 +2102,8 @@ const icons: Icon[] = [ type_of_icon: "REGULAR" }, { - name: "border-inline-start", - slug: "border-inline-start-regular", + name: "border-left", + slug: "border-left-regular", category_id: 111, type_of_icon: "REGULAR" }, @@ -10259,9 +10259,9 @@ function getIconClass(icon: Icon) { return `bxl-${icon.name}`; } else if (icon.type_of_icon === "SOLID") { return `bxs-${icon.name}`; - } else { - return `bx-${icon.name}`; - } + } + return `bx-${icon.name}`; + } for (const icon of icons) {