Skip to content

Commit

Permalink
error2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ibrahem0Salah1 committed Oct 2, 2024
1 parent 1fafe26 commit 00762ec
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ export class AllProductsComponent implements OnInit {
private router: Router,
private auth: AuthService,
private toastr: ToastrService
) {}
) {
this.urlLimit = Number(this.route.snapshot.paramMap.get('limit'));
this.urlSkip = Number(this.route.snapshot.paramMap.get('skip'));
console.log(this.urlLimit, this.urlSkip);
}
allProducts: any = [];
allCategories: any = [];
loadingSpinner: boolean = false;
Expand Down

0 comments on commit 00762ec

Please sign in to comment.