I have an audio file that im querying from contentful but instead of display the data I keep getting this eslintrule pop, It's an audio file so it has no captions. Is there a way of disabling this or correctly disabling it ?
this is the code
{data.allContentfulPodcast.edges.map(video =>
<div>
<audio key={video} src={video.node.video.file.url}/>
</div>
)}