Skip to content

Commit

Permalink
[PLA-1911] fix tracking with daemon account (#151)
Browse files Browse the repository at this point in the history
  • Loading branch information
zlayine authored Aug 9, 2024
1 parent fcdeec3 commit 20d4c8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/factory/collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class DTOCollectionFactory {
accounts.push(publicKeyToAddress(appStore.user?.account));
}

if (appStore.config.daemon) {
if (appStore.config.daemon && !appStore.isMultiTenant) {
accounts.push(publicKeyToAddress(appStore.config.daemon));
}

Expand Down

0 comments on commit 20d4c8a

Please sign in to comment.