This commit is contained in:
hyunwoo93.cha
2024-10-16 18:02:28 +09:00
parent 548af57435
commit 02e07acae4
3 changed files with 16 additions and 9 deletions

View File

@@ -69,12 +69,6 @@ button {
padding: 0;
}
body {
> iframe {
display: none !important;
}
}
.preventMouse {
* {
pointer-events: none;

View File

@@ -245,7 +245,7 @@ export const handleDeepLink = (contentTarget) => (dispatch, getState) => {
const secondLayerInfo = {
linkTpCd,
// linkTpNm,
// linkTpNm
logTpNo: LOG_TP_NO.SECOND_LAYER,
};

View File

@@ -474,7 +474,7 @@ export default function MainView({ className }) {
sendLogAlarmClick({
alarmDt,
alarmType: "Upcoming",
clickFlag: "OK",
clickFlag: "Ok",
cnt: "0",
hstNm,
keywordList: "",
@@ -520,7 +520,7 @@ export default function MainView({ className }) {
sendLogAlarmClick({
alarmDt,
alarmType: "Upcoming",
clickFlag: "NO",
clickFlag: "No",
cnt: "0",
hstNm,
keywordList: "",
@@ -687,6 +687,19 @@ export default function MainView({ className }) {
{loadingComplete &&
activePopup === Config.ACTIVE_POPUP.endOfServicePopup &&
!skipEndOfServicePopup && <EndOfServicePopUp />}
<div
style={{
position: "fixed",
left: "0",
bottom: "0",
color: "#fff",
fontSize: "13px",
opacity: ".5",
zIndex: "999",
}}
>
v1015-001
</div>
</div>
);
}