From 29b97a87b3edd3677e42817c8dcbd845a8acb048 Mon Sep 17 00:00:00 2001 From: LandaMm Date: Tue, 3 Jun 2025 12:57:36 +0200 Subject: [PATCH] feat: link to edit page --- web/src/pages/ApiServices/View/index.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/web/src/pages/ApiServices/View/index.tsx b/web/src/pages/ApiServices/View/index.tsx index b908351..e58c7c1 100644 --- a/web/src/pages/ApiServices/View/index.tsx +++ b/web/src/pages/ApiServices/View/index.tsx @@ -2,7 +2,7 @@ import Breadcrumbs from "@/components/ui/breadcrumbs"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { useAdmin } from "@/store/admin"; -import { useCallback, useEffect, type FC } from "react"; +import { useEffect, type FC } from "react"; import { Link, useParams } from "react-router"; const InfoCard = ({ @@ -189,9 +189,12 @@ const ViewApiServicePage: FC = () => { > {apiService.is_active ? "Disable" : "Enable"} - + + +