Skip to content

Commit

Permalink
fix: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
narekpetrosyan committed Dec 23, 2024
1 parent c536c16 commit 042a770
Show file tree
Hide file tree
Showing 9 changed files with 3,684 additions and 3,236 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { NetworkNames } from "@enkryptcom/types";
import icon from './icons/firo.svg';
import {
BitcoinNetwork,
BitcoinNetworkOptions,
Expand All @@ -18,7 +19,7 @@ const firoOptions: BitcoinNetworkOptions = {
isTestNetwork: true,
currencyName: "tFIRO",
currencyNameLong: "tFiro",
icon: require("./icons/firo.svg"),
icon,
decimals: 8,
node: "https://testexplorer.firo.org",
coingeckoID: "zcoin",
Expand Down
3 changes: 2 additions & 1 deletion packages/extension/src/providers/bitcoin/networks/firo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { NetworkNames } from "@enkryptcom/types";
import icon from './icons/firo.svg';
import {
BitcoinNetwork,
BitcoinNetworkOptions,
Expand All @@ -18,7 +19,7 @@ const firoOptions: BitcoinNetworkOptions = {
isTestNetwork: false,
currencyName: "FIRO",
currencyNameLong: "Firo",
icon: require("./icons/firo.svg"),
icon,
decimals: 8,
node: "https://explorer.firo.org",
coingeckoID: "zcoin",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const changeFocus = (val: FocusEvent) => {
</script>

<style lang="less">
@import "~@action/styles/theme.less";
@import "@action/styles/theme.less";
.send-address-input {
height: 64px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ const close = () => {
</script>

<style lang="less" scoped>
@import "~@action/styles/theme.less";
@import "~@action/styles/custom-scroll.less";
@import "@action/styles/theme.less";
@import "@action/styles/custom-scroll.less";
.form__container {
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -575,8 +575,8 @@ const sendAction = async () => {
</script>

<style lang="less" scoped>
@import "~@action/styles/theme.less";
@import "~@action/styles/custom-scroll.less";
@import "@action/styles/theme.less";
@import "@action/styles/custom-scroll.less";
.form__container {
display: flex;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
</template>

<script setup lang="ts">
import { onBeforeMount, ref, ComponentPublicInstance, defineEmits } from "vue";
import { onBeforeMount, ref, ComponentPublicInstance } from "vue";
import { useRoute, useRouter } from "vue-router";
import CloseIcon from "@action/icons/common/close-icon.vue";
import BaseButton from "@action/components/base-button/index.vue";
Expand Down Expand Up @@ -215,8 +215,8 @@ const isHasScroll = () => {
</script>

<style lang="less" scoped>
@import "~@action/styles/theme.less";
@import "~@action/styles/custom-scroll.less";
@import "@action/styles/theme.less";
@import "@action/styles/custom-scroll.less";
.container {
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ const isHasScroll = () => {
</script>

<style lang="less" scoped>
@import "~@action/styles/theme.less";
@import "~@action/styles/custom-scroll.less";
@import "@action/styles/theme.less";
@import "@action/styles/custom-scroll.less";
.container {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion packages/hw-wallets/src/ledger/bitcoin/configs.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { NetworkNames } from "@enkryptcom/types";
import { bip44Paths } from "@src/configs";
import { bip44Paths } from "../../configs";

const supportedPaths = {
[NetworkNames.Bitcoin]: [bip44Paths.bitcoinSegwitLedger],
Expand Down
Loading

0 comments on commit 042a770

Please sign in to comment.