general category trip
This commit is contained in:
@@ -5,7 +5,7 @@ import { formatTripCalendarDateRangeLong } from "@/lib/trip-dates";
|
||||
interface ProfileTripRowProps {
|
||||
href: string;
|
||||
title: string;
|
||||
mountain: string;
|
||||
destination: string;
|
||||
date: Date;
|
||||
endDate: Date | null;
|
||||
rightSlot?: ReactNode;
|
||||
@@ -14,7 +14,7 @@ interface ProfileTripRowProps {
|
||||
export function ProfileTripRow({
|
||||
href,
|
||||
title,
|
||||
mountain,
|
||||
destination,
|
||||
date,
|
||||
endDate,
|
||||
rightSlot,
|
||||
@@ -26,7 +26,7 @@ export function ProfileTripRow({
|
||||
>
|
||||
<div className="min-w-0 flex-1">
|
||||
<p className="truncate text-sm font-semibold text-neutral-800">{title}</p>
|
||||
<p className="truncate text-xs text-neutral-500">{mountain}</p>
|
||||
<p className="truncate text-xs text-neutral-500">{destination}</p>
|
||||
<p className="mt-0.5 text-[11px] text-neutral-400 sm:text-xs">
|
||||
{formatTripCalendarDateRangeLong(date, endDate)}
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user