refactor: migrate app-rail HOC to core components and remove obsolete index file

This commit is contained in:
Atul Tameshwari
2026-06-16 12:45:10 +05:30
parent fa572acd35
commit 2e282f4f2b
3 changed files with 1 additions and 8 deletions

View File

@@ -1,7 +0,0 @@
/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
export * from "./app-rail-hoc";

View File

@@ -9,7 +9,7 @@
import React from "react";
import type { AppSidebarItemData } from "@/components/sidebar/sidebar-item";
import { AppSidebarItem } from "@/components/sidebar/sidebar-item";
import { withDockItems } from "@/plane-web/components/app-rail/app-rail-hoc";
import { withDockItems } from "./app-rail-hoc";
type Props = {
dockItems: (AppSidebarItemData & { shouldRender: boolean })[];