import { isLocalImageAttachment } from "stream-chat";
import { useAttachmentManagerState } from "stream-chat-react-native";
const { attachments } = useAttachmentManagerState();
// Only show image attachments
const imageUploads = attachments.filter((attachment) =>
isLocalImageAttachment(attachment),
);
// Show all other file attachments
const fileUploads = attachments.filter(
(attachment) => !isLocalImageAttachment(attachment),
);