Skip to content

Commit

Permalink
fix: remove backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
ki8vi committed Aug 19, 2024
1 parent 907ef73 commit e055633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/ordersService/orders.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ export class OrdersService {
}

public getAllUsers(): Observable<User[]> {
return this.httpClient.get<User[]>(`users`);
return this.httpClient.get<User[]>('users');
}
}

0 comments on commit e055633

Please sign in to comment.