From 8e1474a760d69fe23fadc1ad991bb232c7c01696 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 15 Feb 2024 21:24:54 -0800 Subject: [PATCH] Move truenas pool component --- src/widgets/truenas/component.jsx | 2 +- src/{components => }/widgets/truenas/pool.jsx | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{components => }/widgets/truenas/pool.jsx (100%) diff --git a/src/widgets/truenas/component.jsx b/src/widgets/truenas/component.jsx index 0bd9ddfc8..872d8c647 100644 --- a/src/widgets/truenas/component.jsx +++ b/src/widgets/truenas/component.jsx @@ -3,7 +3,7 @@ import { useTranslation } from "next-i18next"; import Container from "components/services/widget/container"; import Block from "components/services/widget/block"; import useWidgetAPI from "utils/proxy/use-widget-api"; -import Pool from "components/widgets/truenas/pool"; +import Pool from "widgets/truenas/pool"; export default function Component({ service }) { const { t } = useTranslation(); diff --git a/src/components/widgets/truenas/pool.jsx b/src/widgets/truenas/pool.jsx similarity index 100% rename from src/components/widgets/truenas/pool.jsx rename to src/widgets/truenas/pool.jsx