From 8adf7ca155a7f2b9d59ecfcc98ca47d123a26f59 Mon Sep 17 00:00:00 2001 From: Ven Date: Sun, 30 Oct 2022 20:45:18 +0100 Subject: Webpack Warnings & Errors (#178) * dev: Useful strict Warnings & Errors * Always log error * Ignore pending patches with all or whose predicate = false * Error -> Warn --- src/plugins/interactionKeybinds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/plugins/interactionKeybinds.ts') diff --git a/src/plugins/interactionKeybinds.ts b/src/plugins/interactionKeybinds.ts index 1d28847..76a25bb 100644 --- a/src/plugins/interactionKeybinds.ts +++ b/src/plugins/interactionKeybinds.ts @@ -24,7 +24,7 @@ import definePlugin from "../utils/types"; import { filters } from "../webpack"; import { ChannelStore, FluxDispatcher as Dispatcher, SelectedChannelStore, UserStore } from "../webpack/common"; -const MessageStore = lazyWebpack(filters.byProps(["getRawMessages"])); +const MessageStore = lazyWebpack(filters.byProps("getRawMessages")); const isMac = navigator.platform.includes("Mac"); // bruh let replyIdx = -1; -- cgit