diff --git a/components/action-tooltip.js b/components/action-tooltip.js
index ff5603e1..a6ca4ea6 100644
--- a/components/action-tooltip.js
+++ b/components/action-tooltip.js
@@ -15,14 +15,21 @@ export default function ActionTooltip ({ children, notForm, disable, overlayText
+
{overlayText}
}
trigger={['hover', 'focus']}
show={formik?.isSubmitting ? false : undefined}
+ popperConfig={{
+ modifiers: {
+ preventOverflow: {
+ enabled: false
+ }
+ }
+ }}
>
-
+
{children}
diff --git a/components/hoverable-popover.js b/components/hoverable-popover.js
index d925e479..57fa1a36 100644
--- a/components/hoverable-popover.js
+++ b/components/hoverable-popover.js
@@ -26,12 +26,20 @@ export default function HoverablePopover ({ id, trigger, body, onShow }) {
show={showOverlay}
placement='bottom'
onHide={handleMouseLeave}
+ popperConfig={{
+ modifiers: {
+ preventOverflow: {
+ enabled: false
+ }
+ }
+ }}
overlay={
{body}