Fix default getPerPage for 'md' widths

This commit is contained in:
Steve Richter 2020-11-20 22:10:56 -05:00 committed by Joe Stump
parent 641ca52ba0
commit c0abb785bb
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -4,7 +4,7 @@ import get from 'lodash.get'
const getPerPage = (width) => {
if (width === 'xs') return 12
if (width === 'sm') return 12
if (width === 'md') return 15
if (width === 'md') return 12
if (width === 'lg') return 18
return 36
}