diff --git a/apps/portal/src/components/offers/profile/ProfileComments.tsx b/apps/portal/src/components/offers/profile/ProfileComments.tsx index a0a47d43..e3e9bb18 100644 --- a/apps/portal/src/components/offers/profile/ProfileComments.tsx +++ b/apps/portal/src/components/offers/profile/ProfileComments.tsx @@ -1,5 +1,7 @@ import { ClipboardDocumentIcon, ShareIcon } from '@heroicons/react/24/outline'; -import { Button, Spinner } from '@tih/ui'; +import { Button, Spinner, TextArea } from '@tih/ui'; + +import ExpandableCommentCard from './comments/ExpandableCommentCard'; type ProfileHeaderProps = Readonly<{ handleCopyEditLink: () => void; @@ -16,6 +18,9 @@ export default function ProfileComments({ isEditable, isLoading, }: ProfileHeaderProps) { + function handleReply(replayingToId: string, userId: string) { + return replayingToId + userId; // To integrate with API + } if (isLoading) { return (
@@ -52,7 +57,41 @@ export default function ProfileComments({

Discussions feature coming soon

- {/*