I have a Svelte component displaying modal dialog with “edit” type of form. The dialog is not displayed by default. User can open it by clicking on an “edit” button on the page. This shows the form. Once the form is submitted, it disappears (Svelte prop is set to false). This is all OK. The problem is that although the form was submitted with new values and everything was properly updated on the backend, if the user reopens the dialog/form again, input fields contain the old/original values. Any hints what I have to do to get the already submitted values also there?