From 13953d3f19b8337868a77a029470f192eaff71b0 Mon Sep 17 00:00:00 2001 From: DevMirza <53424436+Zaid-maker@users.noreply.github.com> Date: Sat, 9 Mar 2024 18:50:17 +0000 Subject: [PATCH] fixreturn [] return [] --- liveblocks.config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/liveblocks.config.ts b/liveblocks.config.ts index 445ea22..a256e38 100644 --- a/liveblocks.config.ts +++ b/liveblocks.config.ts @@ -13,9 +13,13 @@ const client = createClient({ authEndpoint: "/api/liveblocks-auth", async resolveUsers({ userIds }) { // ... + + return [] }, async resolveMentionSuggestions({ text }) { // ... + + return [] }, });