[actions, api] logActions.js & TLogEvent.js, deepLink 관련 comment 삭제

This commit is contained in:
younghoon100.park
2024-05-02 14:03:45 +09:00
parent 55d9cf6354
commit 470bfe1e9b
2 changed files with 0 additions and 18 deletions

View File

@@ -1,7 +1,6 @@
import axios from "axios";
import { getUrl } from "./apiConfig";
// import { clearLaunchParams, getLaunchParams } from "../utils/helperMethods";
import { createQueryString } from "../utils/helperMethods";
export const TLogEvent = (
@@ -36,26 +35,11 @@ export const TLogEvent = (
url += _urlparams ? `?${_urlparams}` : "";
}
// let linkTpCd = "";
// if (httpHeader) {
// const launchParams = getLaunchParams();
// if (launchParams?.contentTarget) {
// const tokens = launchParams.contentTarget.split("_");
// if (tokens[0] === "V3") {
// linkTpCd = tokens[1];
// }
// }
// }
const model = {
...params,
cntryCd,
dvcId,
dvcTp,
// linkTpCd,
platCd,
prodCd,
};
@@ -83,7 +67,6 @@ export const TLogEvent = (
onFail(error);
}
});
// .finally(clearLaunchParams);
}
}
};