Skip to content

Commit

Permalink
bump version of node-sass
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilb committed Jul 12, 2021
1 parent 78caaa2 commit 3e27a39
Show file tree
Hide file tree
Showing 4 changed files with 288 additions and 168 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.19.0
14.16.0
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,9 @@
"mkdirp": "0.5.1",
"moment": "2.21.0",
"mustache": "2.3.0",
"nan": "2.14.2",
"node-fetch": "2.3.0",
"node-sass": "4.9.3",
"node-sass": "6.0.1",
"os-locale": "2.1.0",
"p-retry": "^4.2.0",
"pify": "3.0.0",
Expand All @@ -105,7 +106,7 @@
"react-redux": "7.2.1",
"react-toastify": "^6.0.9",
"react-use": "^17.2.1",
"react-virtualized": "9.21.0",
"react-virtualized": "9.22.3",
"read-last-lines": "1.3.0",
"redux": "4.0.1",
"redux-logger": "3.0.6",
Expand Down Expand Up @@ -213,7 +214,7 @@
"webpack-dev-server": "3.11.2"
},
"engines": {
"node": "^10.19.0"
"node": "^14.16.0"
},
"build": {
"appId": "com.loki-project.messenger-desktop",
Expand Down
3 changes: 1 addition & 2 deletions ts/components/session/LeftPaneContactSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useSelector } from 'react-redux';
import { getDirectContacts, getLeftPaneLists } from '../../state/selectors/conversations';
import { isSearching } from '../../state/selectors/search';

const renderRow = ({ index, key, style }: RowRendererParamsType): JSX.Element | undefined => {
const renderRow = ({ index, key, style }: RowRendererParamsType) => {
const showSearch = useSelector(isSearching);

const lists = showSearch ? undefined : useSelector(getLeftPaneLists);
Expand Down Expand Up @@ -48,7 +48,6 @@ const ContactListItemSection = () => {
};

export const LeftPaneContactSection = () => {
debugger;
return (
<div className="left-pane-contact-section">
<LeftPaneSectionHeader label={window.i18n('contactsHeader')} />
Expand Down
Loading

0 comments on commit 3e27a39

Please sign in to comment.