Hi @bfRhap . Thanks and really happy that you are liking the platform.
Regarding the query params, you should be able to do that. The onFormComplete
expects a JS function. So, you can use a redirect logic and append any query params into the redirect URL.
An example code for this is available at onFormComplete() | Feathery Docs
Code for your quick reference:
onFormComplete={() => {
window.location.href = 'https://google.com';
}}
Please let me know if this helps. Happy to share any other details that can help you get unblocked!