Skip to content

Commit

Permalink
Update to absolute import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kolebjak committed Jul 12, 2023
1 parent 9740467 commit e75856a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/FundWallet/FundWalletModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { BlockContent } from "./components/BlockContent"
import { useTranslation } from "react-i18next"
import { LINKS } from "utils/navigation"
import { useMedia } from "react-use"
import { theme } from "../../theme"
import { theme } from "theme"

type Props = Pick<ComponentProps<typeof Modal>, "open" | "onClose">

Expand Down
2 changes: 1 addition & 1 deletion src/components/FundWallet/components/CryptoBlockTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Heading } from "../../Typography/Heading/Heading"
import { Heading } from "components/Typography/Heading/Heading"
import { ReactComponent as FundCryptoIcon } from "assets/icons/FundCryptoIcon.svg"
import styled from "@emotion/styled"
import { useTranslation } from "react-i18next"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Layout/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { useTranslation } from "react-i18next"
import { Spinner } from "components/Spinner/Spinner.styled"
import * as Tooltip from "@radix-ui/react-tooltip"
import { useMedia } from "react-use"
import { theme } from "../../../theme"
import { theme } from "theme"
import { useState } from "react"
import { FundWalletButton } from "../../FundWallet/FundWalletButton"
import { FundWalletModal } from "../../FundWallet/FundWalletModal"
Expand Down

0 comments on commit e75856a

Please sign in to comment.