Skip to content

Commit

Permalink
fix(ffe-buttons-react): fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
HeleneKassandra committed Aug 22, 2023
1 parent c9087d9 commit cac710e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions packages/ffe-buttons-react/src/BackButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import InlineButton from './InlineBaseButton';
import Symbol from '@sb1/ffe-symbols-react';

const BackButton = props => {
const { leftIcon, ...rest } = props;
return (
<InlineButton
buttonType="back"
Expand All @@ -21,7 +20,7 @@ const BackButton = props => {
chevron_left
</Symbol>
}
{...rest}
{...props}
/>
);
};
Expand Down
1 change: 0 additions & 1 deletion packages/ffe-buttons-react/src/InlineExpandButton.spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import { ChevronIkon } from '@sb1/ffe-icons-react';

import InlineExpandButton from './InlineExpandButton';

Expand Down

0 comments on commit cac710e

Please sign in to comment.