Skip to content

Commit c7c3221

Browse files
committed
feat: remove 'redirect on {domain}' from main menu
This removes "Redirect on {fqdn}" menu item from browser action menu. DNSLink redirect is no longer enabled by default, and this feature does not need to be present at all times (It remains on Preferences screen if needed). In the future we will change it to "Disaple IPFS integrations on these hostnames" Part of #741
1 parent 963a340 commit c7c3221

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

add-on/src/popup/browser-action/context-actions.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ function contextActions ({
6969
</div>
7070
`
7171
}
72-
// TODO: change "redirect on {fqdn}" to "disable on {fqdn}" and disable all integrations
72+
/* TODO: change "redirect on {fqdn}" to "disable on {fqdn}" and disable all integrations
73+
// removed per site toggle for now: ${renderSiteRedirectToggle()}
7374
const renderSiteRedirectToggle = () => {
7475
if (!isRedirectContext) return
7576
return html`
@@ -83,10 +84,10 @@ function contextActions ({
8384
})}
8485
`
8586
}
87+
*/
8688
return html`
8789
<div class='fade-in pv1'>
8890
${renderIpfsContextItems()}
89-
${renderSiteRedirectToggle()}
9091
</div>
9192
`
9293
}

0 commit comments

Comments
 (0)