Skip to content

Commit

Permalink
fixing google-analytics
Browse files Browse the repository at this point in the history
fixing
  • Loading branch information
soulaimaneyahya committed May 25, 2024
1 parent 5a3cee6 commit 451f18d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ export default function (Vue, { head, isClient }) {
if (isClient) {
const script = document.createElement('script');
script.async = true;
script.src = `https://www.googletagmanager.com/gtag/js?id=G-RQWETTJBTY`;
script.src = `https://www.googletagmanager.com/gtag/js?id=G-8HL91MW1S3`;
document.head.appendChild(script);

script.onload = () => {
window.dataLayer = window.dataLayer || [];
function gtag(){ dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-RQWETTJBTY');
gtag('config', 'G-8HL91MW1S3');
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
Multichat is a messaging app with focus on security & user experience
</li>
<li class="announcement-content-item">
Messages are end-to-end encrypted. No one outside of this chat, not even MultiChat, can read or listen to them.
Messages are end-to-end encrypted. No one outside of chat inbox, not even MultiChat, can read or listen to messages.
</li>
<li class="announcement-content-item">
Built-in layers of security give you the peace of mind to focus on connecting with family and friends.
Expand Down

0 comments on commit 451f18d

Please sign in to comment.