completionId: cgen-10fe9fc74ef94ab692cac314432442d7

cgen-10fe9fc74ef94ab692cac314432442d7
This commit is contained in:
Builder.io 2025-11-13 06:32:27 +00:00
parent 1e133654d5
commit e11df334f6

View file

@ -88,6 +88,7 @@ interface ArmPostCardProps {
onLike?: () => void; onLike?: () => void;
onComment?: () => void; onComment?: () => void;
onShare?: () => void; onShare?: () => void;
isLiked?: boolean;
} }
export default function ArmPostCard({ export default function ArmPostCard({
@ -95,6 +96,7 @@ export default function ArmPostCard({
onLike, onLike,
onComment, onComment,
onShare, onShare,
isLiked,
}: ArmPostCardProps) { }: ArmPostCardProps) {
const config = ARM_CONFIG[post.arm_affiliation]; const config = ARM_CONFIG[post.arm_affiliation];
const author = post.user_profiles; const author = post.user_profiles;