June 28, 2025 by

cohealth

why image link also null and creatdAt also the author after i fix the id

startup
avatar

@

test

Pitch Details

export function formatDate(date: string) { if (!date) return ""; // handle null or undefined gracefully return new Date(date).toLocaleDateString('en-US', { month: "long", day: "numeric", year: "numeric", }); } ``