Counterparty:{' '}
{counterpartyIds.map((recipientId, index) => (
{recipientId}
{index < counterpartyIds.length - 1 ? ', ' : ''}
))}
);
};
interface DmHistoryPaginationProps {
config: Config;
userId: string;
channels: ListUserDmChannelsResponse['channels'];
limit: number;
before: string | null;
after: string | null;
}
const DmHistoryPagination: FC