Skip to content

Commit

Permalink
fixed refresh issue
Browse files Browse the repository at this point in the history
  • Loading branch information
akanshaaa19 committed Nov 25, 2024
1 parent 37366ac commit 5e87542
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/containers/Flow/FlowList/FlowList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const FlowList = () => {
},
},
onCompleted: () => {
setRefreshList(true);
setRefreshList(!refreshList);
setNotification('Flow pinned successfully');
},
});
Expand All @@ -141,7 +141,7 @@ export const FlowList = () => {
},
},
onCompleted: () => {
setRefreshList(true);
setRefreshList(!refreshList);
setNotification('Flow unpinned successfully');
},
});
Expand Down

0 comments on commit 5e87542

Please sign in to comment.