disabled eslint again
Some checks failed
checks-impure / test (pull_request) Successful in 29s
checks / test (pull_request) Failing after 3m6s

This commit is contained in:
sara-pervana
2023-12-12 22:10:18 +01:00
parent 85d96203e3
commit fa25e13842
3 changed files with 3 additions and 2 deletions

View File

@@ -54,6 +54,7 @@ export const WithAppState = (props: AppContextProviderProps) => {
loadingEntities: false,
}));
}
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [entityData]);
return (

View File

@@ -12,7 +12,7 @@ export const Client1ConsumerTableConfig = [
{
key: "endpoint_url",
label: "End Point",
render: (value: any) => {
render: () => {
return <Button disabled variant="outlined">Consume</Button>
}
},

View File

@@ -12,7 +12,7 @@ export const Client2ConsumerTableConfig = [
{
key: "endpoint_url",
label: "End Point",
render: (value: any) => {
render: () => {
return <Button disabled variant="outlined">Consume</Button>
}
},