s3-artifact-storage-ui/src/App/S3/TransferSpeedUp/contexts/CloudFrontDistributionsContext.tsx [134:146]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  const fieldChanged = React.useCallback(
    (fieldName: string, currentValue: any) => {
      try {
        return (
          JSON.stringify(currentValue) !==
          JSON.stringify(customFormState[fieldName])
        );
      } catch (e) {
        return true;
      }
    },
    [customFormState]
  );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



s3-artifact-storage-ui/src/contexts/BucketsContext.tsx [95:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  const fieldChanged = React.useCallback(
    (fieldName: string, currentValue: any) => {
      try {
        return (
          JSON.stringify(currentValue) !==
          JSON.stringify(customFormState[fieldName])
        );
      } catch (e) {
        return true;
      }
    },
    [customFormState]
  );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



