diff --git a/packages/app/src/DBDashboardPage.tsx b/packages/app/src/DBDashboardPage.tsx
index 1be5bd4938..7d30013a74 100644
--- a/packages/app/src/DBDashboardPage.tsx
+++ b/packages/app/src/DBDashboardPage.tsx
@@ -82,7 +82,7 @@ import {
import { ContactSupportText } from '@/components/ContactSupportText';
import {
EmptyContainerPlaceholder,
- SortableSectionWrapper,
+ SortableContainerWrapper,
} from '@/components/DashboardDndComponents';
import {
DashboardDndProvider,
@@ -94,7 +94,6 @@ import DBTableChart from '@/components/DBTableChart';
import { DBTimeChart } from '@/components/DBTimeChart';
import FullscreenPanelModal from '@/components/FullscreenPanelModal';
import GroupContainer from '@/components/GroupContainer';
-import SectionHeader from '@/components/SectionHeader';
import { TimePicker } from '@/components/TimePicker';
import {
Dashboard,
@@ -175,7 +174,7 @@ const Tile = forwardRef(
onEditClick,
onDeleteClick,
onUpdateChart,
- onMoveToSection,
+ onMoveToGroup,
moveTargets,
granularity,
onTimeRangeSelect,
@@ -199,10 +198,7 @@ const Tile = forwardRef(
onAddAlertClick?: () => void;
onDeleteClick: () => void;
onUpdateChart?: (chart: Tile) => void;
- onMoveToSection?: (
- containerId: string | undefined,
- tabId?: string,
- ) => void;
+ onMoveToGroup?: (containerId: string | undefined, tabId?: string) => void;
moveTargets?: MoveTarget[];
onSettled?: () => void;
granularity: SQLInterval | undefined;
@@ -422,22 +418,22 @@ const Tile = forwardRef(
>
- {onMoveToSection && moveTargets && moveTargets.length > 0 && (
+ {onMoveToGroup && moveTargets && moveTargets.length > 0 && (