We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b156ca commit b15f292Copy full SHA for b15f292
src/components/Yaml/YamlSidePanelWithLoader.tsx
@@ -34,15 +34,6 @@ export function YamlSidePanelWithLoader({
34
null,
35
);
36
37
- // Load custom resource definition for the resource
38
- const { data: crdData } = useApiResource<CustomResourceDefinition>(
39
- CustomResourceDefinitionObject(resourceType),
40
- undefined,
41
- null,
42
- );
43
-
44
- console.log('Custom Resource Definition:', crdData);
45
46
if (isLoading) return <Loading />;
47
if (error) return <IllustratedError details={t('common.cannotLoadData')} />;
48
0 commit comments