🔧 Tweaking the masonry breakpoints

This commit is contained in:
2022-06-30 08:37:35 -07:00
parent ab6585ca0c
commit ff63944810
2 changed files with 4 additions and 4 deletions

View File

@@ -20,7 +20,7 @@ export const PullList = ({ issues }: PullListProps): ReactElement => {
useEffect(() => { useEffect(() => {
dispatch( dispatch(
getWeeklyPullList({ getWeeklyPullList({
startDate: "2022-6-18", startDate: "2022-7-7",
pageSize: "15", pageSize: "15",
currentPage: "1", currentPage: "1",
}), }),

View File

@@ -16,9 +16,9 @@ export const WantedComicsList = ({
}: WantedComicsListProps): ReactElement => { }: WantedComicsListProps): ReactElement => {
const breakpointColumnsObj = { const breakpointColumnsObj = {
default: 5, default: 5,
1100: 5, 1100: 4,
700: 5, 700: 2,
600: 4, 500: 1,
}; };
const navigate = useNavigate(); const navigate = useNavigate();