Skip to content

Commit 9687e84

Browse files
Merge branch 'main' into staging
2 parents 51fa6c1 + 137ac70 commit 9687e84

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

frontend/src/components/Layout/PageLayout.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ import { SKIP_AUTH } from '../../utils/Constants';
2424
import { useNavigate } from 'react-router';
2525
import { deduplicateByFullPattern, deduplicateNodeByValue } from '../../utils/Utils';
2626

27+
2728
const GCSModal = lazy(() => import('../DataSources/GCS/GCSModal'));
2829
const S3Modal = lazy(() => import('../DataSources/AWS/S3Modal'));
2930
const GenericModal = lazy(() => import('../WebSources/GenericSourceModal'));

frontend/src/utils/Utils.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -881,6 +881,7 @@ export const deduplicateNodeByValue = (arrays: { value: any }[]) => {
881881
});
882882
return Array.from(map.values());
883883
};
884+
884885
export const deduplicateByFullPattern = (arrays: { value: string; label: string }[]) => {
885886
const seen = new Set<string>();
886887
const result: { value: string; label: string }[] = [];

0 commit comments

Comments
 (0)