Skip to content

Commit

Permalink
Fixed display errors cause by merging from main
Browse files Browse the repository at this point in the history
  • Loading branch information
jhagendoornCP committed Jun 3, 2024
1 parent b938c44 commit d5da4aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/BasketItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const BasketItem = ({ itemId, bid, basketMemberView }: Props) => {
const removeItem = async (item: IItem) => {
console.log(item);
deleteItemWithBasketString(item, bid);
//window.location.reload();
window.location.reload();
};

if (!basketMemberView && item?.isPrivate) {
Expand Down
1 change: 1 addition & 0 deletions frontend/src/pages/IndividualGroupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ const IndividualGroupPage: React.FC<Props> = ({
<Box
width="99%"
padding="20px"
height="100%"
borderWidth="1px"
borderRadius="2xl"
backgroundColor="rgba(255, 255, 255, 0.8)"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/ItemsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const ItemsPage: React.FC<Props> = ({
}, [stateVariable.user]);

return (
<Box w="100vw" p="0px 20px" bg="var(--col-bright)">
<Box w="100vw" p="0px 20px" bg="var(--col-bright)" overflow="auto">
<Flex direction="column" minH="100%" width="full">
{/* Header flex */}
<HStack
Expand Down

0 comments on commit d5da4aa

Please sign in to comment.