Skip to content

Commit cc61c96

Browse files
committed
fix: disabled debug in suggestions
1 parent 5815e4a commit cc61c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/composables/useSuggestions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function useSuggestions<TSuggestion>(
1717
$modelValue: Ref<string>,
1818
emit: SuggestionsEmits,
1919
opts: SuggestionsOptions<TSuggestion>,
20-
debug: boolean = true
20+
debug: boolean = false
2121
) {
2222
if (typeof opts.suggestions?.[0] === "object" && !opts.suggestionLabel && !opts.suggestionsFilter) {
2323
throw new Error("`suggestionLabel` or `suggestionsFilter` must be passed if suggestions are objects.")

0 commit comments

Comments
 (0)