diff --git a/frontend/src/components/ui/compound/NavigationBar/Menu.tsx b/frontend/src/components/ui/compound/NavigationBar/Menu.tsx index 1c6f263e2..6263ae424 100644 --- a/frontend/src/components/ui/compound/NavigationBar/Menu.tsx +++ b/frontend/src/components/ui/compound/NavigationBar/Menu.tsx @@ -1,13 +1,9 @@ -import { - AdjustmentsHorizontalIcon, - Bars3Icon, - MegaphoneIcon, - UserCircleIcon, -} from '@heroicons/react/24/outline'; +import { AdjustmentsHorizontalIcon, Bars3Icon, UserCircleIcon } from '@heroicons/react/24/outline'; import { ArrowRightOnRectangleIcon, PencilSquareIcon } from '@heroicons/react/24/solid'; import { css } from 'styled-components'; import type { PropsWithChildren } from 'react'; +import { HiArrowPath, HiOutlineChatBubbleOvalLeftEllipsis } from 'react-icons/hi2'; import { useQueryClient } from '@tanstack/react-query'; @@ -83,7 +79,14 @@ const Menu = () => { return ( - + + + + ); diff --git a/frontend/src/mocks/handlers/station-details/reviews/stationReviewHandlers.ts b/frontend/src/mocks/handlers/station-details/reviews/stationReviewHandlers.ts index fc3f0d391..e06dd24d3 100644 --- a/frontend/src/mocks/handlers/station-details/reviews/stationReviewHandlers.ts +++ b/frontend/src/mocks/handlers/station-details/reviews/stationReviewHandlers.ts @@ -11,7 +11,9 @@ export const stationReviewHandlers = [ const max = 2000; return res( ctx.json({ - totalRatings: (validReviews.reduce((a, b) => a + b.ratings, 0) / reviews.length).toFixed(2), + totalRatings: parseFloat( + (validReviews.reduce((a, b) => a + b.ratings, 0) / reviews.length).toFixed(2) + ), totalCount: Math.floor(Math.random() * (max - min + 1)) + min, }), ctx.delay(1000),