mirror of https://codeberg.org/pzp/pzp-set.git
Ignore unnecessary type complaint
This commit is contained in:
parent
d9a6c4f47d
commit
1ea3f32753
|
@ -394,6 +394,7 @@ function initSet(peer, config) {
|
|||
|
||||
const data = { add: [value], del: [], supersedes }
|
||||
peer.db.feed.publish(
|
||||
// @ts-ignore
|
||||
{ account: loadedAccountID, domain, data },
|
||||
// @ts-ignore
|
||||
(err, rec) => {
|
||||
|
@ -442,6 +443,7 @@ function initSet(peer, config) {
|
|||
|
||||
const data = { add: [], del: [value], supersedes }
|
||||
peer.db.feed.publish(
|
||||
// @ts-ignore
|
||||
{ account: loadedAccountID, domain, data },
|
||||
// @ts-ignore
|
||||
(err, rec) => {
|
||||
|
@ -637,6 +639,7 @@ function initSet(peer, config) {
|
|||
|
||||
const data = { add: [...currentSet], del: [], supersedes }
|
||||
peer.db.feed.publish(
|
||||
// @ts-ignore
|
||||
{ account: loadedAccountID, domain, data },
|
||||
// @ts-ignore
|
||||
(err, rec) => {
|
||||
|
|
Loading…
Reference in New Issue