Running into an issue with an error that says Property 'fields' does not exist on type 'never' with code that looks like ```interface GalleryCover {
fields: {
title: string;
date: string;
year: number;
image: {
fields: {
file: {
url: string;
};
};
};
link: string;
order: number;
};
contentTypeId: string;
}
const galleryCoverResponse = await contentfulClient.getEntries<GalleryCover>({
content_type: 'galleryCover',
//@ts-ignore
order: '-fields.order',
});
<MainLayout title="Knight Owls - Gallery">
<ImageHeader title="Gallery" background="/images/headers/gallery.webp" />
<h3>2023 Gallery</h3>
<GalleryAlbumLayout columns="3">
{
galleryCoverResponse.items
.filter((item) => item.fields.year === 2023)
.map((item) => (
<AlbumCover
event={item.fields.title}
date={item.fields.date}
image={item.fields.image.fields.file.url}
link={item.fields.link}
/>
))
}```