diff --git a/packages/editor/src/index.css b/packages/editor/src/index.css index b9af820..2960ba9 100644 --- a/packages/editor/src/index.css +++ b/packages/editor/src/index.css @@ -86,12 +86,6 @@ color: var(--tiptap-active-fg); } -.tiptap-suggestions__empty { - display: flex; - gap: 0.5rem; - padding: 0.5rem 1rem; -} - @keyframes tiptapFileUpload { 0% { opacity: 0.2; diff --git a/packages/signer/src/signers/nip46.ts b/packages/signer/src/signers/nip46.ts index 9f463d8..0baf240 100644 --- a/packages/signer/src/signers/nip46.ts +++ b/packages/signer/src/signers/nip46.ts @@ -354,13 +354,6 @@ export class Nip46Broker extends Emitter { } const deal = trustedKeyDeal(BigInt("0x" + options.secret), m, n) - - // Add the VSS commits to each shard - // for (const shard of deal.shards) { - // shard.pubShard.vssCommit = deal.commits - // } - - // Use the pubkey and adjusted secret from the deal (BIP-340 adjusted if needed) const signer = Nip01Signer.fromSecret(options.secret) const ourPubkey = await signer.getPubkey() const ackRelays = await options.getPubkeyRelays(ourPubkey, RelayMode.Read)