diff --git a/frontend/src/components/layout/wallet-section/WalletSection.jsx b/frontend/src/components/layout/wallet-section/WalletSection.jsx index 720e6141..3dae8a19 100644 --- a/frontend/src/components/layout/wallet-section/WalletSection.jsx +++ b/frontend/src/components/layout/wallet-section/WalletSection.jsx @@ -1,5 +1,5 @@ import React, { useState, useEffect, useRef } from 'react'; -import Button from '../../ui/button/Button'; +import { Button } from 'components/ui/button'; import { useWalletStore } from '../../../stores/useWalletStore'; const WalletSection = ({ onConnectWallet, onLogout }) => { diff --git a/frontend/src/pages/stake/Stake.jsx b/frontend/src/pages/stake/Stake.jsx index 77267e1b..943a14b6 100644 --- a/frontend/src/pages/stake/Stake.jsx +++ b/frontend/src/pages/stake/Stake.jsx @@ -3,12 +3,12 @@ import { ReactComponent as ETH } from '../../assets/icons/ethereum.svg'; import { ReactComponent as USDC } from '../../assets/icons/borrow_usdc.svg'; import { ReactComponent as DAI } from '../../assets/icons/dai.svg'; import { ReactComponent as STTRK } from '../../assets/icons/strk.svg'; -import MetricCard from '../../components/vault/stake-card/MetricCard'; +import MetricCard from '../../components/vault/stake-card/StakeCard'; import STRK from '../../assets/icons/strk.svg'; import USDCc from '../../assets/icons/apy_icon.svg'; import './stake.css'; import { VaultLayout } from '../../components/vault/VaultLayout'; -import { Button } from '../../components/ui/button'; +import { Button } from 'components/ui/button'; import GasFee from '../../components/vault/gas-fee/GasFee'; import BalanceCards from '../../components/ui/balance-cards/BalanceCards';