Skip to content

Commit

Permalink
Merge pull request #251 from platformsh/fix/subscription-support-tier…
Browse files Browse the repository at this point in the history
…-initialization

Fix derived field initiliazation in subscription
  • Loading branch information
shakaman authored Jun 12, 2023
2 parents 327c1b8 + 59462bb commit b3980af
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/model/OrganizationSubscription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export type CreateSubscriptionPayloadType = {
// @ts-expect-error solve the get and query function inheritance ts error
export default class OrganizationSubscription extends Subscription {
organization_id: string;
support_tier: string;

constructor(subscription: APIObject, customUrl?: string) {
const { organizationId } = subscription;
Expand All @@ -49,7 +48,6 @@ export default class OrganizationSubscription extends Subscription {
this._creatableField.push("organizationId");

this.organization_id = organizationId;
this.support_tier = "";
}

static async get(
Expand Down

0 comments on commit b3980af

Please sign in to comment.