Skip to content

Commit

Permalink
fix(docs): typo
Browse files Browse the repository at this point in the history
  • Loading branch information
codingki committed Jun 30, 2023
1 parent b7d8cc0 commit e97b9eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/hooks/useQuerySmart.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ interface TData {
// ...
}

const { data, isLoading } = useQueryRaw<TData>(address, key);
const { data, isLoading } = useQuerySmart<TData>(address, queryMsg);
console.log(data);
```

#### Params

- address?: `string` - The address of the contract to query
- key?: `string` - The key to lookup in the contract storage
- queryMsg?: `string` - The key to lookup in the contract storage

#### Return Value

Expand Down

2 comments on commit e97b9eb

@vercel
Copy link

@vercel vercel bot commented on e97b9eb Jun 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on e97b9eb Jun 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.