Skip to content

Commit 0b10769

Browse files
authored
Enable bridge tab for all users (#265)
* Remove Bridge flag * Revert locales change
1 parent 3d3d969 commit 0b10769

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

renderer/layouts/MainLayout.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,6 @@ function Sidebar() {
148148
if (id === "multisigLedger" && !flags.multisigLedger.enabled) {
149149
return null;
150150
}
151-
// The bridge tab is only visible if the flag is enabled and we're not on mainnet
152-
if (id === "bridge" && !flags.chainportBridge.enabled) {
153-
return null;
154-
}
155151

156152
const isActive = router.pathname.startsWith(href);
157153
return (

renderer/providers/FeatureFlagsProvider.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,6 @@ const FLAGS_DEFINITION = [
1515
description: "Turning this flag on will make the logo blue.",
1616
key: "demoFlag",
1717
},
18-
{
19-
name: "Chainport Bridge",
20-
description:
21-
"Turning this flag on will show the Bridge navigation item in the sidebar if the current network is Testnet.",
22-
key: "chainportBridge",
23-
},
2418
{
2519
name: "Global Theme Toggle",
2620
description:

0 commit comments

Comments
 (0)