Commit 0d670b10 authored by Eric Rosenbaum's avatar Eric Rosenbaum

Fix load more buttons

parent 5356f05d
......@@ -56,7 +56,7 @@ const TransferHostSelection = ({
className={classNames('button', {
'mod-mutating': loading
})}
onClick={onLoadMore}
onClick={() => onLoadMore()} // eslint-disable-line react/jsx-no-bind
>
<FormattedMessage id="general.loadMore" />
</button>
......
......@@ -88,7 +88,7 @@ const StudioManagers = ({
<h3><FormattedMessage id="studio.sectionLoadError.managersHeadline" /></h3>
<button
className="button"
onClick={onLoadMore}
onClick={() => onLoadMore()} // eslint-disable-line react/jsx-no-bind
>
<FormattedMessage id="studio.sectionLoadError.tryAgain" />
</button>
......@@ -108,7 +108,7 @@ const StudioManagers = ({
className={classNames('button', {
'mod-mutating': loading
})}
onClick={onLoadMore}
onClick={() => onLoadMore()} // eslint-disable-line react/jsx-no-bind
>
<FormattedMessage id="general.loadMore" />
</button>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment