You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the startProcessingDataset method in the useDatasetManager hook accepts the values output from a user-submitted Formik form. It then filters the given values to extract the necessary download option keys for the API request to start processing the dataset.
Problem or idea
We want to move the responsibility of formatting form values to the caller components (using Formik forms) before passing them to startProcessingDataset, and simplify the implementation of this hook method.
Solution or next step
Update the caller components to handle the formatting of the data before passing it to startProcessingDataset
Clean up the formatting logic from startProcessingDataset
The text was updated successfully, but these errors were encountered:
Context
Currently, the
startProcessingDataset
method in theuseDatasetManager
hook accepts thevalues
output from a user-submitted Formik form. It then filters the given values to extract the necessary download option keys for the API request to start processing the dataset.Problem or idea
We want to move the responsibility of formatting form values to the caller components (using Formik forms) before passing them to
startProcessingDataset
, and simplify the implementation of this hook method.Solution or next step
startProcessingDataset
startProcessingDataset
The text was updated successfully, but these errors were encountered: