Skip to content

Commit

Permalink
fixed linting errors and renamed release note
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenn Cox authored and Jenn Cox committed Apr 6, 2024
1 parent 982fb96 commit c126afd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,7 @@ function SplitTransactionButton({
role="button"
style={{
backgroundColor: highlighted
? embedded && isNarrowWidth
? theme.menuItemBackgroundHover
: theme.menuAutoCompleteBackgroundHover
? theme.menuAutoCompleteBackgroundHover
: 'transparent',
borderRadius: embedded ? 4 : 0,
flexShrink: 0,
Expand Down Expand Up @@ -328,9 +326,7 @@ export function CategoryItem({
className={`${className} ${css([
{
backgroundColor: highlighted
? embedded && isNarrowWidth
? theme.menuItemBackgroundHover
: theme.menuAutoCompleteBackgroundHover
? theme.menuAutoCompleteBackgroundHover
: 'transparent',
color: highlighted
? theme.menuAutoCompleteItemTextHover
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import React, {
} from 'react';
import { useDispatch } from 'react-redux';

import { css, hover } from 'glamor';
import { css } from 'glamor';

import { createPayee } from 'loot-core/src/client/actions/queries';
import { getActivePayees } from 'loot-core/src/client/reducers/queries';
Expand Down Expand Up @@ -398,6 +398,7 @@ type CreatePayeeButtonProps = {
style?: CSSProperties;
};

// eslint-disable-next-line import/no-unused-modules
export function CreatePayeeButton({
Icon,
payeeName,
Expand Down
File renamed without changes.

0 comments on commit c126afd

Please sign in to comment.