Skip to content

Commit

Permalink
Move Auth and User modules to src/modules folder
Browse files Browse the repository at this point in the history
  • Loading branch information
codeAesthetic committed Jun 11, 2021
1 parent 102a2f6 commit ac4d4a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as AuthService from "src/AuthService/AuthService";
import { User } from "src/User/User";
import * as AuthService from "src/modules/AuthService";
import { User } from "src/modules/User";

jest.mock("firebase", () => ({
initializeApp: jest.fn(() => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import firebase from "firebase";
import { AuthFormData } from "src/common/interface";
import { User } from "src/User/User";
import { User } from "src/modules/User";

const {
REACT_APP_API_KEY,
Expand Down
File renamed without changes.

0 comments on commit ac4d4a0

Please sign in to comment.