How to add text with a button without a dataset?

I use this code to enter text into the database, but for some reason it doesn’t work without being connected to a dataset. The problem with dataset merging is that the dataset prioritizes my textbox’s built-in and limited feature for fading out text (using animations while I want to use setTimeout). My chosen fade time that I get through fadeOptions is simply ignored and this despite the fact that I have selected “No fade” in the textbox’s animation system. It also doesn’t work by disconnecting the “textsuccess” element from the dataset because then I don’t get any success text at all. Really annoying so please help! :woozy_face:

export function textsubmit_click(event) {
wixData.get(“Members”, _owner.id)
.then((item) => {
item.description = ($w(‘#textBox2’).value),
wixData.update(“Members”, item);
if ($w(“#textsuccess”).hidden) {
$w(“#textsuccess”).show(‘fade’, fadeOptions)
} else {
$w(“#textsuccess”).hide(‘fade’, fadeOptions)
$w(“#dataset6”).save();
console.log(“added image”);
}
})
}

Product:
Wix Editor