Symbol palette: ui components were moved to shared folder

This commit is contained in:
yu-i-i
2025-08-13 01:45:39 +02:00
parent 6ddd549442
commit a273f17ab5
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
import { useEffect, useRef, forwardRef } from 'react'
import PropTypes from 'prop-types'
import OLTooltip from '@/features/ui/components/ol/ol-tooltip'
import OLTooltip from '@/shared/components/ol/ol-tooltip'
const SymbolPaletteItem = forwardRef(function ({
focused,

View File

@@ -1,7 +1,7 @@
import { useCallback, useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
import PropTypes from 'prop-types'
import OLFormControl from '@/features/ui/components/ol/ol-form-control'
import OLFormControl from '@/shared/components/ol/ol-form-control'
import useDebounce from '@/shared/hooks/use-debounce'
export default function SymbolPaletteSearch({ setInput, inputRef }) {