feat: clickable username in post summery card (#201)

* feat: clickable post username
* feat: fetch learner posts based on learner name
This commit is contained in:
Awais Ansari
2022-06-30 18:19:20 +05:00
committed by GitHub
parent b2f5bd8305
commit 70027d0f49
12 changed files with 91 additions and 34 deletions

View File

@@ -43,6 +43,7 @@ const threadsSlice = createSlice({
if (state.author !== payload.author) {
state.pages = [];
state.author = payload.author;
state.totalThreads = null;
}
state.status = RequestStatus.IN_PROGRESS;
},