File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ import { SKIP_AUTH } from '../../utils/Constants';
2424import { useNavigate } from 'react-router' ;
2525import { deduplicateByFullPattern , deduplicateNodeByValue } from '../../utils/Utils' ;
2626
27+
2728const GCSModal = lazy ( ( ) => import ( '../DataSources/GCS/GCSModal' ) ) ;
2829const S3Modal = lazy ( ( ) => import ( '../DataSources/AWS/S3Modal' ) ) ;
2930const GenericModal = lazy ( ( ) => import ( '../WebSources/GenericSourceModal' ) ) ;
Original file line number Diff line number Diff line change @@ -881,6 +881,7 @@ export const deduplicateNodeByValue = (arrays: { value: any }[]) => {
881881 } ) ;
882882 return Array . from ( map . values ( ) ) ;
883883} ;
884+
884885export const deduplicateByFullPattern = ( arrays : { value : string ; label : string } [ ] ) => {
885886 const seen = new Set < string > ( ) ;
886887 const result : { value : string ; label : string } [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments