in src/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu.stories.js [45:54]
handleContextItemsSearch({ category, query }) {
this.isLoading = true;
this.errorMessage = null;
this.currentCategory = category;
this.currentQuery = query;
setStoryTimeout(() => {
this.isLoading = false;
this.searchResults = this.getFilteredResults();
}, 300);
},