1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

Stash lodash import optimization

This commit is contained in:
Michael Telatynski
2020-08-28 18:53:43 +01:00
parent 2c20afc047
commit 1fc55b33c1
18 changed files with 25 additions and 28 deletions

View File

@@ -27,8 +27,7 @@ import {PillCompletion} from './Components';
import * as sdk from '../index';
import {makeRoomPermalink} from "../utils/permalinks/Permalinks";
import {ICompletion, ISelectionRange} from "./Autocompleter";
import uniqBy from "lodash/uniqBy";
import sortBy from "lodash/sortBy";
import {uniqBy, sortBy} from "lodash";
const ROOM_REGEX = /\B#\S*/g;