chore: use src relative imports

This commit is contained in:
2023-01-20 11:11:50 +00:00
parent 3aa1dedcb8
commit ab1efc2e2e
64 changed files with 542 additions and 302 deletions

View File

@ -1,9 +1,9 @@
import { useLiveQuery } from "dexie-react-hooks";
import { useEffect, useMemo } from "react";
import { db } from "../db";
import { MetadataCache } from "../db/User";
import { HexKey } from "../nostr";
import { System } from "../nostr/System";
import { db } from "Db";
import { MetadataCache } from "Db/User";
import { HexKey } from "Nostr";
import { System } from "Nostr/System";
export default function useProfile(pubKey: HexKey | Array<HexKey> | undefined): Map<HexKey, MetadataCache> | undefined {
const user = useLiveQuery(async () => {