From ace8a3adb74779e85f13f00813df32ec777ebe17 Mon Sep 17 00:00:00 2001 From: Enzo Martellucci <52219496+EnxDev@users.noreply.github.com> Date: Sun, 23 Feb 2025 19:56:36 +0100 Subject: [PATCH] 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 3b677316a47eb..5cbaa59c704da 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';