diff --git a/com.twin.app.shoptime/src/views/MainView/MainView.jsx b/com.twin.app.shoptime/src/views/MainView/MainView.jsx
index 55859d22..c96b7f3b 100644
--- a/com.twin.app.shoptime/src/views/MainView/MainView.jsx
+++ b/com.twin.app.shoptime/src/views/MainView/MainView.jsx
@@ -837,12 +837,11 @@ export default function MainView({ className, initService }) {
opacity: "0.9",
zIndex: "999",
backgroundColor: "rgba(0,0,0,0.8)",
- padding: "15px",
+ padding: "5px",
width: "600px",
- height: "400px",
+ height: "800px",
borderRadius: "8px",
fontFamily: "monospace",
- overflow: "auto",
boxSizing: "border-box",
}}
>
@@ -850,62 +849,30 @@ export default function MainView({ className, initService }) {
style={{
color: "#00ff00",
fontWeight: "bold",
- marginBottom: "15px",
- fontSize: "14px",
+ marginBottom: "5px",
+ fontSize: "10px",
}}
>
π λ₯λ§ν¬ λλ²κ·Έ μ 보
{/* contentTarget μ 보 */}
-
-
- π± Redux contentTarget:
-
-
- {deepLinkInfo.contentTarget || "μμ"}
-
-
- isDeepLink: {deepLinkInfo.isDeepLink ? "true" : "false"}
-
+
+
π± Redux contentTarget:
+
{deepLinkInfo.contentTarget || "μμ"}
-
{/* launchParams μ 보 */}
-
-
+
+
π± window.PalmSystem.launchParams:
-
+
{(() => {
try {
// windowμ PalmSystem μ‘΄μ¬ μ¬λΆ νμΈ
if (typeof window !== "object") {
return "β window κ°μ²΄ μμ";
}
- if (window.PalmSystem) {
- return JSON.stringify(window.PalmSystem);
- }
if (!window.PalmSystem) {
return "β PalmSystem μμ";
}
@@ -920,13 +887,36 @@ export default function MainView({ className, initService }) {
// JSON νμ± μλ
const parsed = JSON.parse(window.PalmSystem.launchParams);
- return JSON.stringify(parsed, null, 2);
+ return JSON.stringify(parsed);
} catch (e) {
return `β νμ± μλ¬: ${e.message}\nμλ³Έ κ°: ${window.PalmSystem?.launchParams || "undefined"}`;
}
})()}
+ {/* PalmSystem μ 체 μ 보 */}
+
+
π± window.PalmSystem μ 보:
+
+ {(() => {
+ try {
+ if (typeof window !== "object") {
+ return "β window κ°μ²΄ μμ";
+ }
+ if (!window.PalmSystem) {
+ return "β PalmSystem μμ";
+ }
+
+ // PalmSystemμ λͺ¨λ μμ± νμΈ
+ const palmSystemInfo = JSON.stringify(window.PalmSystem);
+
+ return palmSystemInfo;
+ } catch (e) {
+ return `β μλ¬: ${e.message}`;
+ }
+ })()}
+
+
);