From 336904cef8544f182aefe73c36d1f35ec3149fe4 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Fri, 14 May 2021 11:05:49 -0600 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- src/stores/room-list/algorithms/Algorithm.ts | 2 +- src/utils/MultiLock.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stores/room-list/algorithms/Algorithm.ts b/src/stores/room-list/algorithms/Algorithm.ts index 207035ffce..c50db43d08 100644 --- a/src/stores/room-list/algorithms/Algorithm.ts +++ b/src/stores/room-list/algorithms/Algorithm.ts @@ -34,7 +34,7 @@ import { OrderingAlgorithm } from "./list-ordering/OrderingAlgorithm"; import { getListAlgorithmInstance } from "./list-ordering"; import SettingsStore from "../../../settings/SettingsStore"; import { VisibilityProvider } from "../filters/VisibilityProvider"; -import {MultiLock} from "../../../utils/MultiLock"; +import { MultiLock } from "../../../utils/MultiLock"; /** * Fired when the Algorithm has determined a list has been updated. diff --git a/src/utils/MultiLock.ts b/src/utils/MultiLock.ts index 97cc30306a..507a924dda 100644 --- a/src/utils/MultiLock.ts +++ b/src/utils/MultiLock.ts @@ -14,7 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -import {EnhancedMap} from "./maps"; +import { EnhancedMap } from "./maps"; import AwaitLock from "await-lock"; export type DoneFn = () => void;