Hi everyone,
I'm trying to add a photo to a sharepoint list.
I use Modern Controls for this in my App.

And when i use the Patch function i get an error.

Patch(
Library;
Defaults(Library),
{
Title: txtTitleBook.Value,
booksAuthor: txtAuthorBook.Value,
Year: Value(txtYearPublication.Value),
Image: Image1.Image,
Status: {Value: "free"}
}
)
but why? My SP list has image-type column (Image) and I use image control (Image1) inside Image Datacard.
What am I doing wrong?
Thanks in advance!