🔧 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(() => {
dispatch(
getWeeklyPullList({
startDate: "2022-6-18",
startDate: "2022-7-7",
pageSize: "15",
currentPage: "1",
}),

View File

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