Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmaayan committed May 17, 2023
1 parent a663542 commit abbea23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ecosystem/typescript/sdk/src/providers/indexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,8 @@ export class IndexerClient {
},
): Promise<GetTokenOwnedFromCollectionQuery> {
const collectionAddress = await this.getCollectionAddress(creatorAddress, collectionName, extraArgs);
return await this.getTokenOwnedFromCollectionAddress(ownerAddress, collectionAddress, extraArgs);
const tokens = await this.getTokenOwnedFromCollectionAddress(ownerAddress, collectionAddress, extraArgs);
return tokens;
}

/**
Expand Down

0 comments on commit abbea23

Please sign in to comment.