diff --git a/client/src/app/TabsProvider.js b/client/src/app/TabsProvider.js
index 2057de73f4..bb60d28d3e 100644
--- a/client/src/app/TabsProvider.js
+++ b/client/src/app/TabsProvider.js
@@ -138,7 +138,7 @@ export default class TabsProvider {
return false;
},
getComponent() {
- return forwardRef((props, ref) => {
+ return forwardRef(function EmptyTabProducer(props, ref) {
return ;
});
},
diff --git a/client/src/app/slot-fill/Slot.js b/client/src/app/slot-fill/Slot.js
index 66fc076ec8..b30b813993 100644
--- a/client/src/app/slot-fill/Slot.js
+++ b/client/src/app/slot-fill/Slot.js
@@ -69,7 +69,7 @@ export default class Slot extends PureComponent {
}
-const fillFragment = (Component) => (fill) => {
+const fillFragment = (Component) => function FragmentFill(fill) {
const { id, props } = fill;
if (!Component) {
diff --git a/client/src/shared/ui/Section.js b/client/src/shared/ui/Section.js
index 9fdbb69144..1dd806f78d 100644
--- a/client/src/shared/ui/Section.js
+++ b/client/src/shared/ui/Section.js
@@ -56,7 +56,7 @@ export function Section(props) {
}
-Section.Header = function(props) {
+Section.Header = function Header(props) {
return (
{ props.children }
@@ -64,13 +64,13 @@ Section.Header = function(props) {
);
};
-Section.Actions = function(props) {
+Section.Actions = function Actions(props) {
return (
{ props.children }
);
};
-Section.Body = function(props) {
+Section.Body = function Body(props) {
return (
{ props.children }