This is an automated email from the ASF dual-hosted git repository.
enzomartellucci pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new ace8a3adb7 refactor(DatabaseSelector): Changes the imported types from
antd-4 to antd-5 (#32314)
ace8a3adb7 is described below
commit ace8a3adb74779e85f13f00813df32ec777ebe17
Author: Enzo Martellucci <[email protected]>
AuthorDate: Sun Feb 23 19:56:36 2025 +0100
refactor(DatabaseSelector): Changes the imported types from antd-4 to
antd-5 (#32314)
---
superset-frontend/src/components/DatabaseSelector/index.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset-frontend/src/components/DatabaseSelector/index.tsx
b/superset-frontend/src/components/DatabaseSelector/index.tsx
index 3b677316a4..5cbaa59c70 100644
--- a/superset-frontend/src/components/DatabaseSelector/index.tsx
+++ b/superset-frontend/src/components/DatabaseSelector/index.tsx
@@ -25,7 +25,7 @@ import {
useCallback,
} from 'react';
import { styled, SupersetClient, SupersetError, t } from '@superset-ui/core';
-import type { LabeledValue as AntdLabeledValue } from 'antd/lib/select';
+import type { LabeledValue as AntdLabeledValue } from 'antd-v5/lib/select';
import rison from 'rison';
import { AsyncSelect, Select } from 'src/components';
import ErrorMessageWithStackTrace from
'src/components/ErrorMessage/ErrorMessageWithStackTrace';