Skip to content

Commit

Permalink
hotfix: fix typo in matomo hook
Browse files Browse the repository at this point in the history
  • Loading branch information
MSzalowski committed Dec 16, 2024
1 parent b5ac058 commit b30b295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion govtool/frontend/src/hooks/useMatomo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useEffect } from "react";
export const useMatomo = () => {
useEffect(() => {
const env = import.meta.env.VITE_APP_ENV;
if (env !== "prodction" || env !== "staging") {
if (env !== "production" || env !== "staging") {
return;
}
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
Expand Down

0 comments on commit b30b295

Please sign in to comment.