Skip to content

Commit

Permalink
Fix lint tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
diegolmello committed Jul 25, 2024
1 parent 2f36a2a commit 32720c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/containers/UIKit/Image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export const Media = ({ element }: IImage) => {
const showAttachment = (attachment: IAttachment) => Navigation.navigate('AttachmentView', { attachment });
const imageUrl = element?.imageUrl ?? '';

return <ImageContainer file={{ image_url: imageUrl }} imageUrl={imageUrl} showAttachment={showAttachment} />;
// TODO: need to test this
return <ImageContainer file={{ image_url: imageUrl }} showAttachment={showAttachment} />;
};

const genericImage = (element: IElement, context?: number) => {
Expand Down

0 comments on commit 32720c2

Please sign in to comment.