Skip to content

Commit 7dfa905

Browse files
committed
fixes
1 parent 30588d9 commit 7dfa905

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

src/components/ControlPlane/ComponentList.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ export default function ComponentList({ mcp }: { mcp: ControlPlaneType }) {
4141
accessor: 'version',
4242
},
4343
];
44-
console.log('mcp');
45-
console.log(mcp);
44+
4645
return (
4746
<div>
4847
<AnalyticalTable

src/lib/api/useApiResource.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ export const useApiResource = <T>(
2121
config?: SWRConfiguration,
2222
) => {
2323
const apiConfig = useContext(ApiConfigContext);
24-
console.log('apiConfig');
25-
console.log(apiConfig);
24+
2625
const { data, error, isLoading, isValidating } = useSWR(
2726
resource.path === null
2827
? null //TODO: is null a valid key?

src/views/ControlPlanes/ControlPlaneView.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ export default function ControlPlaneView() {
5858
return <IllustratedError details={t('ControlPlaneView.accessError')} />;
5959
}
6060

61-
console.log(mcp);
6261
return (
6362
<McpContextProvider
6463
context={{

0 commit comments

Comments
 (0)