Set an image aspect ratio constraint to 1:1 for all uploaded images (rather than a fixed size, which is how the Downscale Image setting works).
// Restrict crop to 1:1 aspect ratio.
gform.addFilter('image_hopper_filepond_config', function(config, FilePond, $form, currentPage, formId, fieldId, entryId, files, inputField) {
config.imageEditor.editorOptions.imageCropAspectRatio = 1;
return config
}, 20, 9 )