From c6f0c84935db37e2a18578a081404d84292fe36a Mon Sep 17 00:00:00 2001 From: V Date: Sat, 22 Apr 2023 03:17:00 +0200 Subject: PinDMs: Fix alt up/down being weird (#957) --- src/plugins/pinDms/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/pinDms/index.tsx') diff --git a/src/plugins/pinDms/index.tsx b/src/plugins/pinDms/index.tsx index a7f35a2..249dcd2 100644 --- a/src/plugins/pinDms/index.tsx +++ b/src/plugins/pinDms/index.tsx @@ -21,7 +21,7 @@ import definePlugin from "@utils/types"; import { Channel } from "discord-types/general"; import { addContextMenus, removeContextMenus } from "./contextMenus"; -import { getPinAt, isPinned, settings, snapshotArray, usePinnedDms } from "./settings"; +import { getPinAt, isPinned, settings, snapshotArray, sortedSnapshot, usePinnedDms } from "./settings"; export default definePlugin({ name: "PinDMs", @@ -44,7 +44,7 @@ export default definePlugin({ }, isPinned, - getSnapshot: () => snapshotArray, + getSnapshot: sortedSnapshot, getScrollOffset(channelId: string, rowHeight: number, padding: number, preRenderedChildren: number, originalOffset: number) { if (!isPinned(channelId)) -- cgit