Skip to content

Commit 6543d7f

Browse files
committed
fix typo
1 parent 2e864be commit 6543d7f

File tree

6 files changed

+4735
-6749
lines changed

6 files changed

+4735
-6749
lines changed

components/Connection.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ const notificationsStore = useNotificationsStore()
1818
1919
const router = useRouter()
2020
21-
const isFetchingAccounts = ref(false)
22-
2321
const { hostname } = useRequestURL()
2422
2523
switch (hostname) {

components/cmd/CommandMenu.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ const rawQuickCommandsActions = [
316316
icon: "coins",
317317
title: "Send TIA",
318318
subtitle: "Command",
319-
runText: "Send via Keplr",
319+
runText: "Send TIA",
320320
321321
callback: () => {
322322
modalsStore.open("send")
@@ -327,7 +327,7 @@ const rawQuickCommandsActions = [
327327
icon: "blob",
328328
title: "Submit data blob",
329329
subtitle: "Command",
330-
runText: "Submit via Keplr",
330+
runText: "Submit blob",
331331
332332
callback: () => {
333333
modalsStore.open("pfb")

components/modals/PayForBlobModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ watch(
7575
amp.log("showPfbModal")
7676
7777
if (!appStore.address?.length) {
78-
warningBannerText.value = "Keplr wallet connection is required to submit a blob."
78+
warningBannerText.value = "Wallet connection is required to submit a blob."
7979
} else if (hostname !== "celenium.io") {
8080
warningBannerText.value = `You are currently on ${hostname}. The transaction will be performed on the test network.`
8181
} else {

components/modals/SendModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ watch(
202202
amp.log("showSendModal")
203203
204204
if (!appStore.address?.length) {
205-
warningBannerText.value = "Keplr wallet connection is required to send TIA."
205+
warningBannerText.value = "Wallet connection is required to send TIA."
206206
} else if (hostname !== "celenium.io") {
207207
warningBannerText.value = `You are currently on ${hostname}. The transaction will be performed on the test network.`
208208
} else {
@@ -531,7 +531,7 @@ const handleContinue = async () => {
531531
</Flex>
532532
</Flex>
533533
534-
<Flex gap="6">
534+
<Flex v-if="appStore.wallet === 'keplr'" gap="6">
535535
<Icon name="info" size="12" color="tertiary" style="margin-top: 1px" />
536536
<Text size="12" weight="500" height="140" color="tertiary">
537537
Keplr does not currently support receiving a Gas Fee from outside.<br />

components/modals/StakingModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ watch(
202202
amp.log("showStakingModal")
203203
204204
if (!appStore.address?.length) {
205-
warningBannerText.value = "Keplr wallet connection is required to delegate."
205+
warningBannerText.value = "Wallet connection is required to delegate."
206206
} else if (hostname !== "celenium.io") {
207207
warningBannerText.value = `You are currently on ${hostname}. The transaction will be performed on the test network.`
208208
} else {
@@ -526,7 +526,7 @@ const handleContinue = async () => {
526526
</Flex>
527527
</Flex>
528528
529-
<Flex gap="6">
529+
<Flex v-if="appStore.wallet === 'keplr'" gap="6">
530530
<Icon name="info" size="12" color="tertiary" style="margin-top: 1px" />
531531
<Text size="12" weight="500" height="140" color="tertiary">
532532
Keplr does not currently support receiving a Gas Fee from outside.<br />

0 commit comments

Comments
 (0)