Fix lightning address logs deletion (#1728)

This commit is contained in:
ekzyis 2024-12-15 18:14:33 +01:00 committed by GitHub
parent 14de23b21d
commit 819d382494
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ export function useWalletLogManager (setLogs) {
`,
{
onCompleted: (_, { variables: { wallet: walletType } }) => {
setLogs?.(logs => logs.filter(l => walletType ? l.wallet !== getWalletByType(walletType).name : false))
setLogs?.(logs => logs.filter(l => walletType ? l.wallet !== walletTag(getWalletByType(walletType)) : false))
}
}
)