fix: no animations setting not working on some things

This commit is contained in:
David Ralph
2021-09-15 23:27:26 +01:00
parent 4953298b9f
commit 3f3ee2dd82
2 changed files with 6 additions and 4 deletions

View File

@@ -24,9 +24,9 @@ const SortableItem = sortableElement(({ value }) => (
</li>
));
const SortableContainer = sortableContainer(({ children }) => {
return <ul className='sortablecontainer'>{children}</ul>;
});
const SortableContainer = sortableContainer(({ children }) => (
<ul className='sortablecontainer'>{children}</ul>
));
export default class OrderSettings extends PureComponent {
constructor() {