Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 1563e40

Browse files
committed
fix constructor
1 parent f307d58 commit 1563e40

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@funixproductions/angular-core",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "Package used in all FunixProductions Angular projects",
55
"scripts": {
66
"ng": "ng",

projects/funixproductions-requests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@funixproductions/funixproductions-requests",
3-
"version": "0.1.10",
3+
"version": "0.1.11",
44
"description": "Package used in all FunixProductions Angular projects",
55
"peerDependencies": {
66
"@angular/common": "^17.1.0",

projects/funixproductions-requests/src/lib/services/funixproductions-api/billing/services/funixprod-billing-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {environmentDev} from "../../../../../environments/environment-dev";
66

77
export class FunixprodBillingService extends CrudHttpClient<FunixprodBillingDto> {
88

9-
constructor(protected httpClient: HttpClient, production: boolean) {
9+
constructor(httpClient: HttpClient, production: boolean) {
1010
super(
1111
httpClient,
1212
production ? environment.funixproductionsApiUrl : environmentDev.funixproductionsApiUrl,

0 commit comments

Comments
 (0)