Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
mark86092 committed Sep 13, 2023
1 parent 029025f commit 27d70e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/actions/auth.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import ReactGA from 'react-ga4';
import authStatus from '../constants/authStatus';
import authStatus from 'constants/authStatus';

export const SET_LOGIN = '@@auth/SET_LOGIN';
export const SET_USER = '@@auth/SET_USER';
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/GoogleContextProvider/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useEffect, useState } from 'react';
import { useDispatch } from 'react-redux';
import GoogleContext from 'contexts/GoogleContext';
import { loginWithGoogle } from 'actions/auth';
import { GOOGLE_APP_ID } from '../../../config';
import { loginWithGoogle } from '../../../actions/auth';

const GoogleContextProvider = ({ children }) => {
// initialize google sdk
Expand Down

0 comments on commit 27d70e0

Please sign in to comment.