Skip to content

Commit

Permalink
wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
Unischneider committed Oct 27, 2024
1 parent 0912604 commit 49ba444
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ import { RouterOutlet } from '@angular/router';
import { ChatComponent } from './chat/chat.component';
import { ChatbotService } from './services/chatbot.service';
import { HttpClientModule } from '@angular/common/http';
import { environment } from '../environments/environment';

console.log('Current environment:', environment.production ? 'production' : 'development');

@Component({
selector: 'app-root',
Expand Down
2 changes: 1 addition & 1 deletion src/app/services/chatbot.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { ChatMessage } from '../chat/chat.component';
import { Observable } from 'rxjs';
import { environment } from '../../environments/environment.development';
import { environment } from '../../environments/environment';

@Injectable({
providedIn: 'root'
Expand Down

0 comments on commit 49ba444

Please sign in to comment.