diff --git a/pkgs/ui/src/config/client_1/index.tsx b/pkgs/ui/src/config/client_1/index.tsx index 84154ee..0557c19 100644 --- a/pkgs/ui/src/config/client_1/index.tsx +++ b/pkgs/ui/src/config/client_1/index.tsx @@ -14,11 +14,13 @@ export const ClientTableConfig = [ label: "End Point", render: (value: any) => { const onConsume = () => { - fetch(value).then((response) => { - console.log(response) - }).catch(error => { - console.log("Fetch error: ", error) - }) + fetch(value) + .then((response) => { + console.log(response); + }) + .catch((error) => { + console.log("Fetch error: ", error); + }); }; return (