We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 112ef16 commit ab66c42Copy full SHA for ab66c42
src/plugins/components/plugins.tsx
@@ -142,7 +142,10 @@ export default function Plugin() {
142
console.log(data);
143
SET_INSTALLED_PLUGIN_DATA(data);
144
if (current_tab() === 0) {
145
- if ((Object.keys(SEARCH_IN_PLUGIN_DATA()).length === 0) || (Object.keys(SEARCH_IN_PLUGIN_DATA()).length !== Object.keys(INSTALLED_PLUGIN_DATA()).length)) {
+ if (
146
+ (Object.keys(SEARCH_IN_PLUGIN_DATA()).length === 0) ||
147
+ (Object.keys(SEARCH_IN_PLUGIN_DATA()).length !== Object.keys(INSTALLED_PLUGIN_DATA()).length)
148
+ ) {
149
request_search_in_plugin()
150
}else{
151
set_is_loading(false);
0 commit comments