Skip to content

Commit

Permalink
UI update
Browse files Browse the repository at this point in the history
  • Loading branch information
chunlaw committed Oct 6, 2024
1 parent a04c3e2 commit b4f6600
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/route-board/RouteNoCompany.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ const RouteNoCompany = ({ route }: RouteNoCompanyProps) => {
</Typography>
)}
<Typography component="h4" variant="caption" sx={companySx}>
{route[1].co.map((co) => t(co)).join("+")}
{Object.keys(route[1].stops)
.map((co) => t(co))
.join("+")}
</Typography>
</Box>
);
Expand Down

0 comments on commit b4f6600

Please sign in to comment.