Fix some small issues

This commit is contained in:
Jon Staab
2025-02-03 15:50:19 -08:00
parent 08ee07d157
commit 0f705c459a
5 changed files with 40 additions and 35 deletions
+2 -2
View File
@@ -28,7 +28,7 @@
}
const loginWithNip07 = async () => {
loading = 'nip07'
loading = "nip07"
try {
const pubkey = await getNip07()?.getPublicKey()
@@ -47,7 +47,7 @@
}
const loginWithNip55 = async (app: any) => {
loading = 'nip55'
loading = "nip55"
try {
const signer = new Nip55Signer(app.packageName)
+2 -2
View File
@@ -1,4 +1,4 @@
import type {Component} from "svelte"
import {asClassComponent} from "svelte/legacy"
import type {Writable} from "svelte/store"
import {derived} from "svelte/store"
import {createEditor, SvelteNodeViewRenderer} from "svelte-tiptap"
@@ -84,7 +84,7 @@ export const makeEditor = ({
editor: (this as any).editor,
search: derived(profileSearch, s => s.searchValues),
getRelays: (pubkey: string) => ctx.app.router.FromPubkeys([pubkey]).getUrls(),
component: ProfileSuggestion,
component: asClassComponent(ProfileSuggestion),
}),
]
},