Skip to content

Commit

Permalink
Merge pull request TEAM-BEAT#296 from TEAM-BEAT/feat/TEAM-BEAT#294/GA
Browse files Browse the repository at this point in the history
[Feat/TEAM-BEAT#294] GA 태그 관리자 추가
  • Loading branch information
pepperdad authored Jul 23, 2024
2 parents b6cd8ff + e32bcd4 commit 22eb7ca
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
24 changes: 24 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
<!doctype html>
<html lang="ko">
<head>
<!-- Google Tag Manager -->
<script>
(function (w, d, s, l, i) {
w[l] = w[l] || [];
w[l].push({ "gtm.start": new Date().getTime(), event: "gtm.js" });
var f = d.getElementsByTagName(s)[0],
j = d.createElement(s),
dl = l != "dataLayer" ? "&l=" + l : "";
j.async = true;
j.src = "https://www.googletagmanager.com/gtm.js?id=" + i + dl;
f.parentNode.insertBefore(j, f);
})(window, document, "script", "dataLayer", "GTM-WL6BLGHM");
</script>
<!-- End Google Tag Manager -->
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/BEAT.svg" />
<link rel="mask-icon" href="/BEAT.svg" color="#FF006B" />
Expand All @@ -15,6 +29,16 @@
<title>BEAT</title>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
src="https://www.googletagmanager.com/ns.html?id=GTM-WL6BLGHM"
height="0"
width="0"
style="display: none; visibility: hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script>
Expand Down
3 changes: 2 additions & 1 deletion src/apis/domains/files/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export const getPresignedUrl = async (
searchParams.set(k, v);
}

const modifiedQueryString = searchParams.toString()
const modifiedQueryString = searchParams
.toString()
.replace(/castImages=%5B%5D/g, "castImages")
.replace(/staffImages=%5B%5D/g, "staffImages");
return modifiedQueryString;
Expand Down

0 comments on commit 22eb7ca

Please sign in to comment.