From a2f77fb876ca29975de0b63d0340a604ac62b5b5 Mon Sep 17 00:00:00 2001 From: Matt Gallo Date: Mon, 3 Jun 2024 09:25:35 -0400 Subject: [PATCH] chore: remove unnecessary export --- packages/ibm-products/src/components/Coachmark/Coachmark.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ibm-products/src/components/Coachmark/Coachmark.tsx b/packages/ibm-products/src/components/Coachmark/Coachmark.tsx index 5306239671..bafacb3203 100644 --- a/packages/ibm-products/src/components/Coachmark/Coachmark.tsx +++ b/packages/ibm-products/src/components/Coachmark/Coachmark.tsx @@ -277,7 +277,7 @@ export let Coachmark = forwardRef( } ); -export const overlayRefType = +const overlayRefType = typeof HTMLElement === 'undefined' ? PropTypes.object : PropTypes.instanceOf(HTMLElement);