Skip to content

Commit

Permalink
Updates walletconnect version and fixes router warning
Browse files Browse the repository at this point in the history
  • Loading branch information
peterpolman committed Jul 9, 2024
1 parent f0f5d76 commit dc9bd84
Show file tree
Hide file tree
Showing 3 changed files with 508 additions and 556 deletions.
8 changes: 5 additions & 3 deletions apps/app/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@
<div v-else id="main" :class="{ 'overflow-hidden': accountStore.isMobile }">
<BaseNavbarTop />
<div class="d-flex h-100">
<transition name="fade" mode="out-in">
<router-view class="router-view-app order-lg-0" />
</transition>
<router-view v-slot="{ Component }" class="router-view-app order-lg-0">
<transition name="fade" mode="out-in">
<component :is="Component" />
</transition>
</router-view>
<BaseSidebar />
</div>
<BaseModalLogin />
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@
"@types/multer": "^1.4.11",
"@types/oidc-provider": "^7.14.0",
"@vuepic/vue-datepicker": "7.2.0",
"@wagmi/connectors": "^4.1.14",
"@wagmi/core": "^2.6.5",
"@wagmi/connectors": "^5.0.21",
"@wagmi/core": "^2.11.6",
"@walletconnect/modal": "^2.6.2",
"@web3modal/wagmi": "^4.0.9",
"@web3modal/wagmi": "^5.0.6",
"alchemy-sdk": "^3.3.1",
"axios": "^1.6.5",
"axios-better-stacktrace": "^2.1.6",
Expand Down Expand Up @@ -94,7 +94,7 @@
"short-uuid": "^5.2.0",
"tslib": "^2.3.0",
"unique-username-generator": "^1.3.0",
"viem": "^2.7.13",
"viem": "^2.17.3",
"vue": "^3.3.4",
"vue-chart-3": "^3.1.8",
"vue-confetti-explosion": "^1.0.2",
Expand Down Expand Up @@ -203,6 +203,10 @@
"vitest": "1.6.0",
"vue3-jest": "^27.0.0-alpha.1"
},
"optionalDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"resolutions": {
"@achrinza/node-ipc": "9.2.7"
}
Expand Down
Loading

0 comments on commit dc9bd84

Please sign in to comment.