@selfcommunity/react-ui 0.7.0-alpha.361 → 0.7.0-alpha.362

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -90,7 +90,7 @@ function AccountDataPortability(inProps) {
90
90
  */
91
91
  const handleDownloadDataPortabilityFile = () => {
92
92
  setDownloadingDataPortability(true);
93
- api_services_1.DataPortabilityService.downloadDataPortability()
93
+ api_services_1.DataPortabilityService.downloadDataPortability({ timeout: 30 * 60 * 1000 })
94
94
  .then((res) => {
95
95
  const url = window.URL.createObjectURL(new Blob([res], { type: 'application/zip' }));
96
96
  const link = document.createElement('a');
@@ -88,7 +88,7 @@ export default function AccountDataPortability(inProps) {
88
88
  */
89
89
  const handleDownloadDataPortabilityFile = () => {
90
90
  setDownloadingDataPortability(true);
91
- DataPortabilityService.downloadDataPortability()
91
+ DataPortabilityService.downloadDataPortability({ timeout: 30 * 60 * 1000 })
92
92
  .then((res) => {
93
93
  const url = window.URL.createObjectURL(new Blob([res], { type: 'application/zip' }));
94
94
  const link = document.createElement('a');