Skip to content

Commit

Permalink
frontend: Fix error message in KubeNodeDetails
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksandr Dubenko <[email protected]>
  • Loading branch information
sniok committed Dec 16, 2024
1 parent 77a4c97 commit 61303e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const KubeObjectDetails = memo(({ resource }: { resource: KubeObject }) =
useEffect(() => {
if (!kindComponentMap[kind]) {
console.error(
'No details component for kind ${kind} was found. See KubeNodeDetails.tsx for more info'
`No details component for kind ${kind} was found. See KubeNodeDetails.tsx for more info`
);
}
}, [kindComponentMap, kind]);
Expand Down

0 comments on commit 61303e7

Please sign in to comment.