diff --git a/web/frontend/src/components/config/control-item.tsx b/web/frontend/src/components/config/control-item.tsx
index b2c512eeb..5e4946769 100644
--- a/web/frontend/src/components/config/control-item.tsx
+++ b/web/frontend/src/components/config/control-item.tsx
@@ -1,4 +1,4 @@
-import { ReactNode } from "react"
+import type { ReactNode } from "react"
import { cn } from "@/lib/utils"
diff --git a/web/frontend/src/components/config/routing-section.tsx b/web/frontend/src/components/config/routing-section.tsx
index c46c66169..4ee9e15a2 100644
--- a/web/frontend/src/components/config/routing-section.tsx
+++ b/web/frontend/src/components/config/routing-section.tsx
@@ -1,4 +1,4 @@
-import { Plus, Trash2 } from "lucide-react"
+import { IconPlus, IconTrash } from "@tabler/icons-react"
import { useTranslation } from "react-i18next"
import { Button } from "@/components/ui/button"
@@ -78,7 +78,7 @@ export function RoutingSection({
size="sm"
onClick={handleAddTier}
>
-
+
{t("pages.config.routing.add_tier", "Add Tier")}
@@ -137,7 +137,7 @@ export function RoutingSection({
className="text-destructive h-8 w-8"
onClick={() => handleRemoveTier(index)}
>
-
+
))}