Skip to content

Commit 43eb1d3

Browse files
committed
Fixed issues with wallet connect page getting frozen
1 parent 486857d commit 43eb1d3

8 files changed

+7
-21
lines changed

src-capacitor/ios/App/App.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@
364364
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
365365
CODE_SIGN_IDENTITY = "Apple Development";
366366
CODE_SIGN_STYLE = Automatic;
367-
CURRENT_PROJECT_VERSION = 186;
367+
CURRENT_PROJECT_VERSION = 187;
368368
DEVELOPMENT_TEAM = 89X576BZBF;
369369
INFOPLIST_FILE = App/Info.plist;
370370
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
@@ -387,7 +387,7 @@
387387
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
388388
CODE_SIGN_ENTITLEMENTS = App/AppRelease.entitlements;
389389
CODE_SIGN_STYLE = Automatic;
390-
CURRENT_PROJECT_VERSION = 186;
390+
CURRENT_PROJECT_VERSION = 187;
391391
DEVELOPMENT_TEAM = 89X576BZBF;
392392
INFOPLIST_FILE = App/Info.plist;
393393
IPHONEOS_DEPLOYMENT_TARGET = 13.0;

src/components/walletconnect/SelectAddressForSessionDialog.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-dialog ref="dialogRef" persistent seamless class="no-click-outside">
2+
<q-dialog ref="dialogRef" persistent seamless>
33
<q-card class="q-dialog-plugin br-15 q-pb-xs pt-card" :class="getDarkModeClass(darkMode)">
44
<q-card-section class="text-grey-10">
55
<div class="row items-start justify-start no-wrap q-gutter-x-sm">

src/components/walletconnect/SessionDisconnectConfirmDialog.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-dialog ref="dialogRef" persistent seamless class="no-click-outside">
2+
<q-dialog ref="dialogRef" persistent seamless>
33
<q-card class="q-dialog-plugin br-15 q-pb-xs pt-card" :class="getDarkModeClass(darkMode)">
44
<q-card-section class="text-black">
55
<div class="text-grad">

src/components/walletconnect/SessionRequestDialog.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-dialog ref="dialogRef" @hide="onDialogHide" seamless class="no-click-outside">
2+
<q-dialog ref="dialogRef" @hide="onDialogHide" seamless>
33
<q-card class="pt-card text-bow" :class="getDarkModeClass(darkMode)">
44
<SessionInfo
55
:session = "sessionRequest" session-type="request" :flat="true" hide-session-id hide-topic

src/components/walletconnect/WC2SessionRequestDialog.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-dialog v-model="innerVal" ref="dialogRef" position="bottom" @hide="onDialogCancel" seamless class="no-click-outside">
2+
<q-dialog v-model="innerVal" ref="dialogRef" position="bottom" @hide="onDialogCancel" seamless>
33
<q-card class="pt-card text-bow" :class="getDarkModeClass(darkMode)">
44
<div class="row items-center q-pb-sm q-px-sm q-pt-sm">
55
<div class="text-h5 q-space">

src/components/walletconnect/WalletConnectConfirmDialog.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<q-dialog ref="dialog" @hide="onDialogHide" persistent seamless class="no-click-outside">
2+
<q-dialog ref="dialog" @hide="onDialogHide" persistent seamless>
33
<q-card class="q-dialog-plugin br-15 q-pb-xs pt-card" :class="getDarkModeClass(darkMode)">
44
<q-card-section class="text-black">
55
<div class="text-grad">Connect to this site?</div>

src/components/walletconnect/WalletConnectV2.vue

-7
Original file line numberDiff line numberDiff line change
@@ -914,10 +914,3 @@ defineExpose({
914914
z-index: 10;
915915
}
916916
</style>
917-
918-
<style lang="scss">
919-
.q-dialog.no-pointer-events:has(.new-session) {
920-
pointer-events: bounding-box !important;
921-
background-color: rgba($color: #000000, $alpha: 0.3) !important;
922-
}
923-
</style>

src/pages/apps/ignored-tokens-list.vue

-7
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,3 @@ export default {
246246
}
247247
}
248248
</style>
249-
250-
<style lang="scss">
251-
.q-dialog.no-pointer-events:has(.remove-token) {
252-
pointer-events: bounding-box !important;
253-
background-color: rgba($color: #000000, $alpha: 0.3) !important;
254-
}
255-
</style>

0 commit comments

Comments
 (0)