Skip to content

Commit

Permalink
Fix nodejs version
Browse files Browse the repository at this point in the history
  • Loading branch information
AchoArnold committed Dec 8, 2023
1 parent be086b2 commit 37cae32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

- uses: pnpm/action-setup@v2
name: Install pnpm
Expand Down
2 changes: 1 addition & 1 deletion api/pkg/services/user_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ func (service *UserService) UpdateSubscription(ctx context.Context, params *even

user.SubscriptionID = &params.SubscriptionID
user.SubscriptionName = params.SubscriptionName
user.SubscriptionEndsAt = &params.SubscriptionEndsAt
user.SubscriptionEndsAt = params.SubscriptionEndsAt
user.SubscriptionRenewsAt = &params.SubscriptionRenewsAt
user.SubscriptionStatus = &params.SubscriptionStatus

Expand Down

0 comments on commit 37cae32

Please sign in to comment.