Skip to content

Commit 49ba444

Browse files
committed
wrong import
1 parent 0912604 commit 49ba444

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

src/app/app.component.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ import { RouterOutlet } from '@angular/router';
33
import { ChatComponent } from './chat/chat.component';
44
import { ChatbotService } from './services/chatbot.service';
55
import { HttpClientModule } from '@angular/common/http';
6-
import { environment } from '../environments/environment';
7-
8-
console.log('Current environment:', environment.production ? 'production' : 'development');
96

107
@Component({
118
selector: 'app-root',

src/app/services/chatbot.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
22
import { Injectable } from '@angular/core';
33
import { ChatMessage } from '../chat/chat.component';
44
import { Observable } from 'rxjs';
5-
import { environment } from '../../environments/environment.development';
5+
import { environment } from '../../environments/environment';
66

77
@Injectable({
88
providedIn: 'root'

0 commit comments

Comments
 (0)