Before Milestone Meeting Final Changes #40

Merged
Luis merged 11 commits from final-fixes into main 2023-12-12 22:00:38 +00:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit fa25e13842 - Show all commits

View File

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

View File

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

View File

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