Skip to content

Commit

Permalink
Fix: Corrected .env configuration issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alexm3133 committed Dec 17, 2023
1 parent 6c913d5 commit da03a59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/src/app/components/refuge-info/refuge-info.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ export class RefugeInfoComponent implements OnInit {
return;
}

// this.http.get<any>(`${sensorsApiUrl}/refugio/${this.refuge.id}`)
this.http.get<any>(`https://sensors.refuapp.online/refugio/${this.refuge.id}`)
this.http.get<any>(`${sensorsApiUrl}/refugio/${this.refuge.id}`)

.subscribe({
next: (data) => {
Expand Down
2 changes: 1 addition & 1 deletion app/src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const environment = {
production: false,
API: 'https://backend.refuapp.online',
MAPS_FORCE_CREATE: true,
SENSORS_API: 'https://sensors.refuapp.online',
SENSORS_API: "https://sensors.refuapp.online",
};

/*
Expand Down

0 comments on commit da03a59

Please sign in to comment.