Timothy Jaeryang Baek 5 months ago
parent
commit
9321a6ff60
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/channel/MessageInput/MentionList.svelte

+ 1 - 1
src/lib/components/channel/MessageInput/MentionList.svelte

@@ -44,7 +44,7 @@
 		}
 	};
 
-	$: if (query && userSuggestions) {
+	$: if (query !== null && userSuggestions) {
 		getUserList();
 	}