this works fine but if I replace the regular textarea with
<Texarea default=co.observations />
then on page reload the text shows but is remove after 2 sec
<ActionForm action=update_contact>
<input type="hidden" name="id" value=co.id />
<div class="grid w-full max-w-md gap-4">
<InputGroup>
<textarea name="observations" class="min-h-[200px]">
{co.observations}
</textarea>
<InputGroupAddon align="block-end" class="border-t">
<InputGroupText>{co.email}</InputGroupText>
<Button
button_type="submit"
size="sm"
class="ml-auto"
variant="ghost"
>
{icon!(icondata::LuSave)}
</Button>
</InputGroupAddon>
</InputGroup>
</div>
</ActionForm>
this works fine but if I replace the regular textarea with
<Texarea default=co.observations />then on page reload the text shows but is remove after 2 sec