This commit is contained in:
Martti Malmi
2023-11-17 13:52:10 +02:00
parent 5942d92923
commit 52553adabf
215 changed files with 3265 additions and 2597 deletions

View File

@ -3,8 +3,8 @@ import { useIntl, FormattedMessage } from "react-intl";
import { useNavigate } from "react-router-dom";
import { UserMetadata, mapEventToProfile } from "@snort/system";
import { unwrap } from "SnortUtils";
import { formatShort } from "Number";
import { unwrap } from "@/SnortUtils";
import { formatShort } from "@/Number";
import {
ServiceProvider,
ServiceConfig,
@ -13,16 +13,16 @@ import {
ServiceErrorCode,
HandleRegisterResponse,
CheckRegisterResponse,
} from "Nip05/ServiceProvider";
import AsyncButton from "Element/AsyncButton";
import SendSats from "Element/SendSats";
import Copy from "Element/Copy";
} from "@/Nip05/ServiceProvider";
import AsyncButton from "@/Element/AsyncButton";
import SendSats from "@/Element/SendSats";
import Copy from "@/Element/Copy";
import { useUserProfile } from "@snort/system-react";
import useEventPublisher from "Hooks/useEventPublisher";
import { debounce } from "SnortUtils";
import useLogin from "Hooks/useLogin";
import SnortServiceProvider from "Nip05/SnortServiceProvider";
import { UserCache } from "Cache";
import useEventPublisher from "@/Hooks/useEventPublisher";
import { debounce } from "@/SnortUtils";
import useLogin from "@/Hooks/useLogin";
import SnortServiceProvider from "@/Nip05/SnortServiceProvider";
import { UserCache } from "@/Cache";
import messages from "./messages";