| @@ -12,7 +12,7 @@ const ItemDetails = () => { | |||
| const offer = useSelector(selectOffer); | |||
| const userId = useSelector(selectUserId); | |||
| let isMyProfile = useMemo(() => { | |||
| if (offer?.offer?.userId?.toString() === userId.toString()) { | |||
| if (offer?.offer?.userId?.toString() === userId?.toString()) { | |||
| return true; | |||
| } | |||
| return false; | |||
| @@ -21,7 +21,7 @@ export const ItemDetailsLayoutContainer = styled(Container)` | |||
| `; | |||
| export const RightCard = styled(Grid)` | |||
| margin-top: 48px; | |||
| margin-top: 34px; | |||
| border-top-right-radius: 4px; | |||
| width: 100%; | |||
| /* @media (max-width: 800px) { | |||