Skip to content

Commit

Permalink
0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KABBOUCHI committed Oct 17, 2022
1 parent 698f74d commit d4322fe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nuxt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@instadapp/vue-web3-nuxt",
"version": "0.9.5",
"version": "0.9.6",
"license": "MIT",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@instadapp/vue-web3",
"version": "0.9.5",
"version": "0.9.6",
"description": "Vue web3 composition api",
"license": "MIT",
"main": "index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const setWeb3LibraryCallback = (

export type VueWeb3Library = any

export const useWeb3 = <IVueWeb3Library>() => {
export const useWeb3 = <VueWeb3Library>() => {
const onErrorCb = ref<(error: Error) => void>()

const activate = async (
Expand Down Expand Up @@ -191,7 +191,7 @@ export const useWeb3 = <IVueWeb3Library>() => {
})

return {
library: library as Ref<IVueWeb3Library>,
library: library as Ref<VueWeb3Library>,
active,
activate,
deactivate,
Expand Down

0 comments on commit d4322fe

Please sign in to comment.