Skip to content

Commit

Permalink
lint and prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
keisyrzk committed Dec 19, 2023
1 parent 6e45bbb commit 04a75d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions src/components/SelectionList/BaseListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,7 @@ function BaseListItem({
isUserItem || item.isSelected ? styles.sidebarLinkTextBold : null,
styles.pre,
]}
alternateTextStyles={[
styles.optionAlternateText,
styles.textLabelSupporting,
isFocused ? styles.sidebarLinkActiveText : styles.sidebarLinkText,
styles.pre,
]}
alternateTextStyles={[styles.optionAlternateText, styles.textLabelSupporting, isFocused ? styles.sidebarLinkActiveText : styles.sidebarLinkText, styles.pre]}
isDisabled={isDisabled}
onSelectRow={onSelectRow}
showTooltip={showTooltip}
Expand Down
2 changes: 1 addition & 1 deletion src/components/SelectionList/UserListItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import SubscriptAvatar from '@components/SubscriptAvatar';
import Text from '@components/Text';
import Tooltip from '@components/Tooltip';
import useThemeStyles from '@hooks/useThemeStyles';
import {userListItemPropTypes} from './selectionListPropTypes';
import useStyleUtils from '@styles/useStyleUtils';
import {userListItemPropTypes} from './selectionListPropTypes';

function UserListItem({item, textStyles, alternateTextStyles, showTooltip, style}) {
const styles = useThemeStyles();
Expand Down

0 comments on commit 04a75d7

Please sign in to comment.