Skip to content

Commit

Permalink
Alphabetical import the user module in app
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan committed Jan 17, 2025
1 parent fa24963 commit 8401ee2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ export class AppModule implements NestModule {
AboutModule,
...(isAccountsFeatureEnabled ? [AccountsModule] : []),
...(isAuthFeatureEnabled ? [AuthModule] : []),
...(isUsersFeatureEnabled ? [UsersModule] : []),
BalancesModule,
ChainsModule,
CollectiblesModule,
Expand Down Expand Up @@ -113,6 +112,7 @@ export class AppModule implements NestModule {
TargetedMessagingModule,
TransactionsModule,
TransactionsViewControllerModule,
...(isUsersFeatureEnabled ? [UsersModule] : []),
// common
CacheModule,
// Module for storing and reading from the async local storage
Expand Down

0 comments on commit 8401ee2

Please sign in to comment.