diff --git a/src/common/Button/Button.js b/src/common/Button/Button.js
index c51cb583f..e33803e07 100644
--- a/src/common/Button/Button.js
+++ b/src/common/Button/Button.js
@@ -42,10 +42,14 @@ Button.defaultProps = {
stopPropagation: true
};
+const ButtonWithFocusable = withFocusable(Button);
+
+ButtonWithFocusable.displayName = 'ButtonWithFocusable';
+
const ButtonWithForwardedRef = React.forwardRef((props, ref) => (
-
+
));
ButtonWithForwardedRef.displayName = 'ButtonWithForwardedRef';
-export default withFocusable(ButtonWithForwardedRef);
+export default ButtonWithForwardedRef;