Fix imports

This commit is contained in:
Beto Dealmeida
2026-03-11 14:39:05 -04:00
parent 68e6380d88
commit cdcb5ecce4
2 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@
* under the License.
*/
import { useEffect } from 'react';
import { t } from '@apache-superset/core';
import { t } from '@apache-superset/core/translation';
import { Spin } from 'antd';
import { withJsonFormsControlProps } from '@jsonforms/react';
import type {

View File

@@ -17,8 +17,8 @@
* under the License.
*/
import { useState, useEffect, useCallback, useRef } from 'react';
import { t } from '@apache-superset/core';
import { styled } from '@apache-superset/core/ui';
import { t } from '@apache-superset/core/translation';
import { styled } from '@apache-superset/core/theme';
import { SupersetClient } from '@superset-ui/core';
import { Checkbox, Spin } from 'antd';
import { Select } from '@superset-ui/core/components';