Skip to content

Commit

Permalink
views/Routing/SetFees: patch for setting all fees
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Mar 13, 2023
1 parent b74a02e commit 57a18d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/Routing/SetFees.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export default class SetFees extends React.PureComponent<SetFeesProps, {}> {
channel.channelId;
}

const channelId = channel.channelId;
const channelPoint = channel.channel_point;
const channelId = channel && channel.channelId;
const channelPoint = channel && channel.channel_point;

// LND
let policy;
Expand Down

0 comments on commit 57a18d9

Please sign in to comment.