Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
fix: google analytics typo (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
HideBa committed Jun 4, 2021
1 parent e2fe0a3 commit 943b5e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/organisms/Published/PublishedEarth/hooks.ts
Expand Up @@ -25,9 +25,9 @@ export default (alias?: string) => {
const googleAnalyticsData: { enableGA?: boolean; trackingId?: string } = useMemo(
() => ({
enableGA: data?.property.googleAnalytics?.enableGA,
trackingId: data?.property.googleAnalitcs?.trackingId,
trackingId: data?.property.googleAnalytcs?.trackingId,
}),
[data?.property.googleAnalitcs?.trackingId, data?.property.googleAnalytics?.enableGA],
[data?.property.googleAnalytcs?.trackingId, data?.property.googleAnalytics?.enableGA],
);

useEffect(() => {
Expand Down

0 comments on commit 943b5e1

Please sign in to comment.