diff --git a/.idea/dictionaries/romanpotapov.xml b/.idea/dictionaries/romanpotapov.xml
deleted file mode 100644
index 9973a9778a..0000000000
--- a/.idea/dictionaries/romanpotapov.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
- blockchain
- passcode
- tangem
-
-
-
\ No newline at end of file
diff --git a/data/nft/src/main/kotlin/com/tangem/data/nft/DefaultNFTRepository.kt b/data/nft/src/main/kotlin/com/tangem/data/nft/DefaultNFTRepository.kt
index fd2e23dced..6887f4016e 100644
--- a/data/nft/src/main/kotlin/com/tangem/data/nft/DefaultNFTRepository.kt
+++ b/data/nft/src/main/kotlin/com/tangem/data/nft/DefaultNFTRepository.kt
@@ -95,7 +95,7 @@ internal class DefaultNFTRepository @Inject constructor(
val salePrice = sdkPrice?.let {
val convertedPrice = salePriceConverter.convert(sdkPrice)
convertedPrice.copy(
- value = convertedPrice.value.movePointLeft(nftCurrency.decimals),
+ value = convertedPrice.value,
decimals = nftCurrency.decimals,
symbol = nftCurrency.symbol,
)
@@ -459,7 +459,7 @@ internal class DefaultNFTRepository @Inject constructor(
val nftCurrency = getNFTCurrency(network)
NFTSalePrice.Value(
assetId = assetId,
- value = price.value.movePointLeft(nftCurrency.decimals),
+ value = price.value,
fiatValue = null,
symbol = nftCurrency.symbol,
decimals = nftCurrency.decimals,
diff --git a/data/tokens/src/main/kotlin/com/tangem/data/tokens/repository/DefaultCurrenciesRepository.kt b/data/tokens/src/main/kotlin/com/tangem/data/tokens/repository/DefaultCurrenciesRepository.kt
index 595c23de02..4f3a819ef0 100644
--- a/data/tokens/src/main/kotlin/com/tangem/data/tokens/repository/DefaultCurrenciesRepository.kt
+++ b/data/tokens/src/main/kotlin/com/tangem/data/tokens/repository/DefaultCurrenciesRepository.kt
@@ -518,36 +518,14 @@ internal class DefaultCurrenciesRepository(
currencyRawId: CryptoCurrency.RawID,
): Flow