fix build

This commit is contained in:
hzrd149 2024-11-22 12:15:28 -06:00
parent 979a8601fe
commit c19156920b
3 changed files with 3 additions and 4 deletions

View File

@ -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";

View File

@ -141,7 +141,7 @@ function TableWithContainer({ children, node, ...props }: TableProps & ExtraProp
function CustomCode({ children, node, ...props }: CodeProps & ExtraProps) {
return (
<Code fontSize="inherit" {...props}>
<Code fontSize="inherit" overflowX="auto" {...props}>
{children}
</Code>
);

View File

@ -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";