diff --git a/src/components/event-zap-modal/index.tsx b/src/components/event-zap-modal/index.tsx index 634f4fc49..306f9af9d 100644 --- a/src/components/event-zap-modal/index.tsx +++ b/src/components/event-zap-modal/index.tsx @@ -11,7 +11,7 @@ import { import dayjs from "dayjs"; import { kinds } from "nostr-tools"; import { getValue } from "applesauce-core/observable"; -import { getInboxes, getOutboxes, safeRelayUrls } from "applesauce-core/helpers"; +import { getInboxes, getInvoice, getOutboxes, safeRelayUrls } from "applesauce-core/helpers"; import { DraftNostrEvent, NostrEvent, isDTag } from "../../types/nostr-event"; import { getZapSplits } from "../../helpers/nostr/zaps"; @@ -24,7 +24,6 @@ import lnurlMetadataService from "../../services/lnurl-metadata"; import signingService from "../../services/signing"; import accountService from "../../services/account"; import PayStep from "./pay-step"; -import { getInvoice } from "../../../../applesauce/packages/core/src/helpers/lnurl"; import UserLink from "../user/user-link"; import { getEventRelayHints } from "../../services/event-relay-hint"; import { eventStore, queryStore } from "../../services/event-store"; diff --git a/src/components/markdown/markdown.tsx b/src/components/markdown/markdown.tsx index bca0a086b..06a631ff7 100644 --- a/src/components/markdown/markdown.tsx +++ b/src/components/markdown/markdown.tsx @@ -141,7 +141,7 @@ function TableWithContainer({ children, node, ...props }: TableProps & ExtraProp function CustomCode({ children, node, ...props }: CodeProps & ExtraProps) { return ( - + {children} ); diff --git a/src/views/user/about/index.tsx b/src/views/user/about/index.tsx index d3bc75524..57a2fd351 100644 --- a/src/views/user/about/index.tsx +++ b/src/views/user/about/index.tsx @@ -19,8 +19,8 @@ import { } from "@chakra-ui/react"; import { nip19 } from "nostr-tools"; import { ChatIcon } from "@chakra-ui/icons"; +import { parseLNURLOrAddress } from "applesauce-core/helpers"; -import { parseLNURLOrAddress } from "../../../../../applesauce/packages/core/src/helpers/lnurl"; import { truncatedId } from "../../../helpers/nostr/event"; import { parseAddress } from "../../../services/dns-identity"; import { useAdditionalRelayContext } from "../../../providers/local/additional-relay-context";