From 614ac4c8028fb9ee24ac5368b3d125dfa0838b29 Mon Sep 17 00:00:00 2001 From: Stepan Usatiuk Date: Sat, 29 Jul 2023 13:22:51 +0200 Subject: [PATCH] import fix in frontend (how did it work??) --- .circleci/config.yml | 2 +- frontend/src/redux/user/reducer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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";