We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65140ab commit 94adb82Copy full SHA for 94adb82
package/src/components/Reply/Reply.tsx
@@ -66,6 +66,10 @@ const RightContent = React.memo(
66
);
67
}
68
69
+ if (attachment?.type === FileTypes.VoiceRecording) {
70
+ return null;
71
+ }
72
+
73
if (attachment && isFileAttachment(attachment)) {
74
return <FileIcon mimeType={attachment.mime_type} />;
75
0 commit comments