Merge branch 'mhkim-node' of https://g.wace.me/jskim/vexplor_dev into jskim-node

This commit is contained in:
kjs
2026-04-24 17:59:00 +09:00
126 changed files with 27780 additions and 896 deletions
+9
View File
@@ -523,6 +523,15 @@ function AppLayoutInner({ children }: AppLayoutProps) {
// POP 모드 진입 핸들러
const handlePopModeClick = async () => {
try {
// PC → POP 전환 시 전체화면 적용
try {
if (!document.fullscreenElement) {
await document.documentElement.requestFullscreen();
}
} catch {
// 전체화면 미지원 또는 거부 시 무시
}
const response = await menuApi.getPopMenus();
if (response.success && response.data) {
const { childMenus, landingMenu } = response.data;