diff --git a/pkgs/ui/src/components/hooks/useAppContext.tsx b/pkgs/ui/src/components/hooks/useAppContext.tsx index 476b3c4..e45ac7c 100644 --- a/pkgs/ui/src/components/hooks/useAppContext.tsx +++ b/pkgs/ui/src/components/hooks/useAppContext.tsx @@ -54,6 +54,7 @@ export const WithAppState = (props: AppContextProviderProps) => { loadingEntities: false, })); } + // eslint-disable-next-line react-hooks/exhaustive-deps }, [entityData]); return ( diff --git a/pkgs/ui/src/config/client_1/index.tsx b/pkgs/ui/src/config/client_1/index.tsx index e2b8ecf..69f44bb 100644 --- a/pkgs/ui/src/config/client_1/index.tsx +++ b/pkgs/ui/src/config/client_1/index.tsx @@ -12,7 +12,7 @@ export const Client1ConsumerTableConfig = [ { key: "endpoint_url", label: "End Point", - render: (value: any) => { + render: () => { return } }, diff --git a/pkgs/ui/src/config/client_2/index.tsx b/pkgs/ui/src/config/client_2/index.tsx index a971098..7cc0f2a 100644 --- a/pkgs/ui/src/config/client_2/index.tsx +++ b/pkgs/ui/src/config/client_2/index.tsx @@ -12,7 +12,7 @@ export const Client2ConsumerTableConfig = [ { key: "endpoint_url", label: "End Point", - render: (value: any) => { + render: () => { return } },