Update snapshots

This commit is contained in:
Gerzon Z 2021-10-06 11:16:29 -04:00
parent da7f954996
commit 1d40c3ba7e
3 changed files with 626 additions and 73 deletions

File diff suppressed because it is too large Load Diff

View File

@ -49,7 +49,7 @@ const Attachments = React.memo(
); );
} }
if (file.actions && file.actions.length > 0) { if (file.actions && file.actions.length > 0) {
return <AttachedActions key={file} attachment={file} theme={theme} />; return <AttachedActions attachment={file} theme={theme} />;
} }
return ( return (

View File

@ -38,6 +38,7 @@ const BaseItem = ({ item, ...props }) => (
}} }}
onPress={() => alert('pressed')} onPress={() => alert('pressed')}
{...props} {...props}
thread
/> />
); );