Describe the bug
I have a test image processed with bioformats2raw and served locally. When I try to load this URL in Avivator, it posts errors to the console about not finding METADATA.ome.xml and ultimately doesn't show any output.
It seems like loadBioformatsZarr is just looking in the wrong places... if I change this in the version I'm running locally
export async function loadBioformatsZarr(
source: string | (File & { path: string })[],
options: Partial<ZarrOptions> = {}
) {
const METADATA = 'OME/METADATA.ome.xml';
const ZARR_DIR = '';
then it works as expected with my test data. I can provide more details of the versions of bioformats2raw used etc if that helps.