-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(billing): implement sign-tx endpoint #265
Conversation
a89ee81
to
bf2acb9
Compare
apps/api/src/billing/services/managed-user-wallet/managed-user-wallet.service.ts
Outdated
Show resolved
Hide resolved
<> | ||
{user?.username && user?.bio && ( | ||
<UserProfileLayout page="settings" username={user?.username} bio={user?.bio}> | ||
{isLoading || !user ? ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess we don't need to check user if the user has a username.
{isLoading || !user ? ( | |
{isLoading ? ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, to handle cases like this added a container which would provide user guaranteed.
5487667
2b44094
to
8011159
Compare
5487667
to
ae5f07e
Compare
As a part of this: - add drizzle orm to start migration from sequelize - add new top leve modules to start moving towards better modularity - add DI - cover new billing endpoints with functional tests - introduce proper logging - introduce global error handler refs #247
ae5f07e
to
5def025
Compare
as a part of this:
refs #247