Skip to content
This repository was archived by the owner on Jan 20, 2022. It is now read-only.

Commit

Permalink
🐛 fix animations not being disabled by SpaceKitProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
justinanastos committed Feb 6, 2020
1 parent 4bc4948 commit efaba76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AbstractTooltip/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const AbstractTooltip: React.FC<Props> = ({
<>
<TippyStyles />
<Tippy
animation={!disableAnimations ? "shift-away" : undefined}
animation={!disableAnimations ? "shift-away" : ""}
arrow={false}
hideOnClick={forceVisibleForTestingOnly ? false : hideOnClick}
trigger={forceVisibleForTestingOnly ? "manual" : trigger}
Expand Down

0 comments on commit efaba76

Please sign in to comment.