Skip to content

Commit

Permalink
networkmanager: Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvollmer committed Feb 12, 2025
1 parent a6366cd commit 3f18aee
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/networkmanager/bond.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ const bond_monitoring_choices =
];

const modes_with_primary = [
'active-backup',
'balance-tlb',
'balance-alb'
];
'active-backup',
'balance-tlb',
'balance-alb'
];

export const BondDialog = ({ connection, dev, settings }) => {
const Dialogs = useDialogs();
Expand Down Expand Up @@ -87,7 +87,7 @@ export const BondDialog = ({ connection, dev, settings }) => {

const onSubmit = (ev) => {
const options = settings.bond.options;
delete options['primary'];
delete options.primary;

const createSettingsObj = () => ({
...settings,
Expand Down

0 comments on commit 3f18aee

Please sign in to comment.