Select the types of activity you want to include in your feed.
1export function formatWhen(d: Date | string) { 2 const date = typeof d === "string" ? new Date(d) : d; 3 return date.toLocaleString(undefined, { 4 dateStyle: "medium", 5 timeStyle: "short", 6 }); 7}