diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c120690 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +.vscode/* \ No newline at end of file diff --git a/app/scripts/ui/search/prompt_results.gd b/app/scripts/ui/search/prompt_results.gd index c4485e6..d9a3761 100644 --- a/app/scripts/ui/search/prompt_results.gd +++ b/app/scripts/ui/search/prompt_results.gd @@ -26,7 +26,7 @@ func _on_search_text_changed(query: String) -> void: await prompt_request(query) clear() - var prompts: Array = JSON.parse_string(result_str) + var prompts = JSON.parse_string(result_str) if prompts == null or prompts.is_empty(): return