Skip to content

Commit

Permalink
fix update distribution groups bug (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
saroojbkhari authored Oct 4, 2023
1 parent 3f854b0 commit 8febc26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/route/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function* saveRoute(
network: routeToSave.network,
network_id: routeToSave.network_id,
peer: routeToSave.peer,
peer_groups: newPeerGroups,
peer_groups: newPeerGroups.length ? newPeerGroups : null,
groups: newGroups,
} as Route,
};
Expand Down

0 comments on commit 8febc26

Please sign in to comment.