From b1d51c19eab98ef97a31480cd185ae2459cbab8d Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Fri, 21 Feb 2025 11:04:52 +0100 Subject: [PATCH] ui: fix broken import --- .../app/components/Client/CustomFields/CustomFields.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/app/components/Client/CustomFields/CustomFields.tsx b/frontend/app/components/Client/CustomFields/CustomFields.tsx index d4c3ed218..d7e978d20 100644 --- a/frontend/app/components/Client/CustomFields/CustomFields.tsx +++ b/frontend/app/components/Client/CustomFields/CustomFields.tsx @@ -4,11 +4,11 @@ import AnimatedSVG, { ICONS } from 'Shared/AnimatedSVG/AnimatedSVG'; import { useModal } from 'App/components/Modal'; import { useStore } from 'App/mstore'; import { observer } from 'mobx-react-lite'; -import { List, Space, Typography, Button, Tooltip } from 'antd'; -import { PencilIcon, PlusIcon, Tags } from 'lucide-react'; +import { List, Space, Typography, Button, Tooltip, Empty } from 'antd'; +import { PlusIcon, Tags } from 'lucide-react'; import {EditOutlined } from '@ant-design/icons'; import usePageTitle from '@/hooks/usePageTitle'; -import { Empty } from '.store/antd-virtual-7db13b4af6/package'; + const CustomFields = () => { usePageTitle('Metadata - OpenReplay Preferences');