Skip to content

Commit 0936f95

Browse files
committed
fix(popover): add missing semantic color
1 parent 1a4a9fd commit 0936f95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/Popover/Popover.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { usePopper } from 'react-popper';
66
import { theme } from '../../essentials/theme';
77
import { get } from '../../utils/themeGet';
88
import { getSemanticValue } from '../../utils/cssVariables';
9-
import { Colors, Spaces } from '../../essentials';
9+
import { Spaces } from '../../essentials';
1010
import { ChevronDownIcon, ChevronUpIcon } from '../../icons/index';
1111
import { useClickOutside } from '../../utils/hooks/useClickOutside';
1212

@@ -216,7 +216,7 @@ const Popover: React.FC<PopoverProps> = ({
216216
{typeof children === 'string' ? (
217217
<DefaultPopoverWrapper
218218
ref={popoverTriggerRef}
219-
style={{ background: render ? Colors.AUTHENTIC_BLUE_50 : 'none' }}
219+
style={{ background: render ? getSemanticValue('background-secondary-default') : 'none' }}
220220
>
221221
<Text fontWeight="semibold">{children}</Text>
222222
{!render ? (

0 commit comments

Comments
 (0)