From e7c059724dfc047a833fb2c81348023fcc512f0e Mon Sep 17 00:00:00 2001 From: csawatzky Date: Mon, 6 Oct 2025 15:46:07 -0600 Subject: [PATCH] hotfix so the bin cards are not as squished in the bin yard drawer --- src/bin/BinsList.tsx | 10 ++++++++-- src/bin/BinyardDisplay.tsx | 3 +++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/bin/BinsList.tsx b/src/bin/BinsList.tsx index 3ae7428..71a9240 100644 --- a/src/bin/BinsList.tsx +++ b/src/bin/BinsList.tsx @@ -22,6 +22,7 @@ interface Props { loadMore?: () => void; //startingTranslate: number; valDisplay?: "high" | "low" | "average"; + insert?: boolean } const useStyles = makeStyles((_theme) => { @@ -39,7 +40,7 @@ const useStyles = makeStyles((_theme) => { }); export default function BinsList(props: Props) { - const { bins, duplicateBin, title, gridView, loadMore, valDisplay } = props; + const { bins, duplicateBin, title, gridView, loadMore, valDisplay, insert } = props; const classes = useStyles(); // const history = useHistory(); const navigate = useNavigate() @@ -114,7 +115,12 @@ export default function BinsList(props: Props) { {bins.map((b, i) => (