ngOnDestroy()

in ChatbotUI/src/app/components/main/main.component.ts [157:163]


  ngOnDestroy() {
    this.destroyed.next();
    this.destroyed.complete();
    if (this.stream) {
      this.stopStream(); // Stop the stream when component is destroyed
    }
  }