bug: Fix profile update & relays for new user

This commit is contained in:
2023-03-31 13:08:50 +01:00
parent 29c80c4259
commit f296063283
7 changed files with 27 additions and 56 deletions

View File

@ -1,11 +1,9 @@
import { configureStore } from "@reduxjs/toolkit";
import { reducer as LoginReducer } from "State/Login";
import { reducer as CacheReducer } from "State/Cache";
const store = configureStore({
reducer: {
login: LoginReducer,
cache: CacheReducer,
},
});