Skip to content

Commit

Permalink
fix faulty backtick
Browse files Browse the repository at this point in the history
  • Loading branch information
mbritense committed Aug 14, 2024
1 parent f0b84e5 commit bcb8af6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/valtimo/task/src/lib/services/task.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export class TaskService extends BaseApiService {
}

public getTasks(): Observable<Task[]> {
return this.httpClient.get<Task[]>(this.getApiUrl('/v1/task?filter=all`'));
return this.httpClient.get<Task[]>(this.getApiUrl('/v1/task?filter=all'));
}

public getTask(id: string): Observable<any> {
Expand Down

0 comments on commit bcb8af6

Please sign in to comment.