diff --git a/.circleci/config.yml b/.circleci/config.yml index 3036e58..cc17544 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -125,7 +125,7 @@ jobs: --cache-from=type=local,src=/tmp/dockercache . - run: name: prune cache - command: docker buildx prune --keep-storage=2gb --verbose + command: docker buildx prune --keep-storage=4gb --verbose - save_cache: key: buildx-photos-circleci-{{ checksum "/tmp/dockercache/index.json" }} diff --git a/frontend/src/redux/user/reducer.ts b/frontend/src/redux/user/reducer.ts index 7b03579..f2a5eab 100644 --- a/frontend/src/redux/user/reducer.ts +++ b/frontend/src/redux/user/reducer.ts @@ -1,5 +1,5 @@ import { Reducer } from "react"; -import { IUserJSON } from "~/src/entity/User"; +import { IUserJSON } from "~/src/shared/types"; import { AuthAction, AuthTypes } from "~src/redux/auth/actions"; import { UserAction, UserTypes } from "./actions";