Merge commit 'fe6f830eab' into dev_mod

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2026-04-08 16:21:36 -07:00
commit 5891dfa4d0
26 changed files with 1674 additions and 314 deletions

View file

@ -78,6 +78,10 @@ import {
import Loading from "../loading";
const MobileEditorPanel = dynamic(
() =>
import("@/components/editor-panel/editor-panel").then((m) => ({
default: m.MobileEditorPanel,
})),
() =>
import("@/components/editor-panel/editor-panel").then((m) => ({
default: m.MobileEditorPanel,
@ -85,6 +89,10 @@ const MobileEditorPanel = dynamic(
{ ssr: false }
);
const MobileHitlEditPanel = dynamic(
() =>
import("@/components/hitl-edit-panel/hitl-edit-panel").then((m) => ({
default: m.MobileHitlEditPanel,
})),
() =>
import("@/components/hitl-edit-panel/hitl-edit-panel").then((m) => ({
default: m.MobileHitlEditPanel,
@ -92,6 +100,10 @@ const MobileHitlEditPanel = dynamic(
{ ssr: false }
);
const MobileReportPanel = dynamic(
() =>
import("@/components/report-panel/report-panel").then((m) => ({
default: m.MobileReportPanel,
})),
() =>
import("@/components/report-panel/report-panel").then((m) => ({
default: m.MobileReportPanel,