From ee77f38cdb324cbcf12518490df77fc9e6b89282 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 22:52:02 +0000 Subject: Improve gallery scroll indicators and format code Co-authored-by: arielcostas <94913521+arielcostas@users.noreply.github.com> --- src/frontend/app/components/StopItemSkeleton.tsx | 33 +++++++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) (limited to 'src/frontend/app/components/StopItemSkeleton.tsx') diff --git a/src/frontend/app/components/StopItemSkeleton.tsx b/src/frontend/app/components/StopItemSkeleton.tsx index 9133393..76559de 100644 --- a/src/frontend/app/components/StopItemSkeleton.tsx +++ b/src/frontend/app/components/StopItemSkeleton.tsx @@ -3,14 +3,15 @@ import Skeleton, { SkeletonTheme } from "react-loading-skeleton"; import "react-loading-skeleton/dist/skeleton.css"; interface StopItemSkeletonProps { - showId?: boolean; - stopId?: number; + showId?: boolean; + stopId?: number; } const StopItemSkeleton: React.FC = ({ - showId = false, - stopId + showId = false, + stopId, }) => { +<<<<<<< HEAD return (
  • @@ -37,6 +38,30 @@ const StopItemSkeleton: React.FC = ({
  • ); +======= + return ( + +
  • +
    + {showId && stopId && <>({stopId}) } + +
    + +
    +
    +
  • +
    + ); +>>>>>>> 88e0621 (Improve gallery scroll indicators and format code) }; export default StopItemSkeleton; -- cgit v1.3