Skip to content

Commit

Permalink
fix: proper import and add check for pending token info
Browse files Browse the repository at this point in the history
  • Loading branch information
kiriyaga-txfusion committed Jan 27, 2025
1 parent 78537ce commit 51ff617
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/api/src/token/token.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Token } from "./token.entity";
import { Block } from "../block/block.entity";
import { Transaction } from "../transaction/entities/transaction.entity";
import { TransferModule } from "../transfer/transfer.module";
import { BalanceModule } from "src/balance/balance.module";
import { BalanceModule } from "../balance/balance.module";
@Module({
imports: [TypeOrmModule.forFeature([Token, Block, Transaction]), TransferModule, BalanceModule],
controllers: [TokenController],
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/components/Contract.vue
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<template #tab-4-content>
<ContractEvents :contract="contract" />
</template>
<template v-if="tokenInfo" #tab-5-content>
<template v-if="tokenInfo && !isLoadingTokenInfo" #tab-5-content>
<TokenHoldersList :tokenInfo="tokenInfo">
<template #not-found>
<TokenHoldersListEmptyState />
Expand Down

0 comments on commit 51ff617

Please sign in to comment.