Davide Covato
Davide Covato
Hi, Like the reporter, I need to access the formio object. Locally, I modified the file as follows: ```javascript import React, { useCallback, useEffect, useImperativeHandle, useReducer, useRef } from "react"...
@cesosag That's right. Nowadays, I use the `formReady` combined with `React.useRef()`, and programmatically I run validation `checkValidity(...)` and form submission `submit()`.
Hi @namti, I'm sorry for the slow reply. I changed the application code. I use a custom `Form` similar to the code above. Maybe it's not React-way. I create `const...
Hi @sh-rp, > @devcovato Are you reading the secrets with `dlt.secrets.get` only for debugging purposes? Or are you using this in your production code too? I don't read for debugging...
Hi @sh-rp, > @devcovato did you manage to solve this? The issue is still present. As a workaround I created the file `/.dlt/secrets.toml`.
Hi @sh-rp, I work on a different task now. I will try in the next few days and let you know.
Hi @sh-rp, I tried your code and it works as you described. I prefer not to change the env vars. I do this instead: ``` credentials = dlt.secrets.get("sources.sql_database.credentials") credentials["database"] =...