Hide Strip if a field is empty in a dataset

Ok i edited the code but not works
@russian-dima do you have any ideas? Thank you

import wixData from 'wix-data';
import wixLocation from 'wix-location';

let product;

$w.onReady(async function () {
 product = await $w('#productPage').getProduct();
 initProduct();
 
 wixLocation.onChange(async (location) => {
 product = await $w('#productPage').getProduct();
 initProduct();
 })
})


async function initProduct() {
 await $w('#prodottiDataset').setFilter(wixData.filter().eq('storeProducts', product._id));
 //This not workd
 let finiture = $w('#prodottiDataset').getCurrentItem().finiture;
 if (finiture)
 {
 $w('#finiture').expand();
 }
 else {
 $w('#finiture').collapse();
 }
 let gallery = $w('#prodottiDataset').getCurrentItem().galleriaProdotto;
 if (gallery)
 {
 $w('#stripDettagli').expand();
 }
 else {
 $w('#stripDettagli').collapse();
 }
}

This is The DB fields name.

This is the page: https://www.shop.madeinlando.it/product-page/gb911