handleContextItemRemove()

in src/components/chat/components/duo_chat_context/duo_chat_context_item_menu/duo_chat_context_item_menu.stories.js [71:77]


    handleContextItemRemove(item) {
      const index = this.selectedItems.findIndex((i) => i.id === item.id);
      if (index !== -1) {
        this.selectedItems.splice(index, 1);
      }
      this.searchResults = this.getFilteredResults();
    },