From 7ef8b88aabf30e7476c3cd9b2ce1cc51d061db2a Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Thu, 1 May 2025 12:35:03 +0100 Subject: [PATCH] chore: fix broken syntax --- src/client/src/ts/guild/feeds.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/src/ts/guild/feeds.ts b/src/client/src/ts/guild/feeds.ts index c08034f..54fcf04 100644 --- a/src/client/src/ts/guild/feeds.ts +++ b/src/client/src/ts/guild/feeds.ts @@ -312,7 +312,7 @@ const clearEditModalData = () => { }; const loadEditModalData = async (id: number) => { - const feed: FeedWithChannels = await ajax({ + const feed: FeedWithChannels = await $.ajax({ url: `/guild/${guildId}/feeds/api?id=${id}`, method: "get" });