Skip to content

Commit

Permalink
type issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nicole-obrien committed Jun 26, 2024
1 parent 00f4466 commit 9f446af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/desktop/components/menus/DappActionsMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
]
$: dappName = dapp.metadata?.name ?? localize('general.unknown')
$: hasActiveSession = !!dapp.session
$: hasActiveSession = !!dapp.sessionTopic
function onRemoveClick(): void {
openPopup({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
export let onClick: (() => unknown) | undefined = undefined
$: networkIds = Object.values(
dapp.session?.namespaces ?? getPersistedDappNamespacesForDapp(dapp.metadata?.url ?? '')?.supported ?? {}
dapp.namespaces ?? getPersistedDappNamespacesForDapp(dapp.metadata?.url ?? '')?.supported ?? {}
).flatMap((namespace) => namespace.chains as NetworkId[])
$: verifiedState = $activeProfileId
Expand Down

0 comments on commit 9f446af

Please sign in to comment.