Skip to content

Commit

Permalink
chore: remove unnecessary comments
Browse files Browse the repository at this point in the history
Signed-off-by: gatici <[email protected]>
  • Loading branch information
gatici committed Jan 9, 2025
1 parent 1206818 commit d3c3f4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/(nms)/network-configuration/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,14 +228,14 @@ const NetworkConfiguration = () => {
{isCreateModalVisible && (
<NetworkSliceModal
toggleModal={toggleCreateNetworkSliceModal}
onSave={handleAddNetworkSlice} // Pass the mutation handler to modal for saving new slice
onSave={handleAddNetworkSlice}
/>
)}
{isEditModalVisible && (
<NetworkSliceModal
networkSlice={networkSlice}
toggleModal={toggleEditNetworkSliceModal}
onSave={handleEditNetworkSlice} // Pass the mutation handler to modal for saving existing slice
onSave={handleEditNetworkSlice}
/>
)}
</>
Expand Down

0 comments on commit d3c3f4c

Please sign in to comment.