Skip to content

Commit

Permalink
Fix a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Oct 15, 2024
1 parent 7edc760 commit 33a93b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/extension/src/content-scripts/inject/injected-script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ const keplr = new InjectedKeplr(
rdns: process.env.KEPLR_EXT_EIP6963_PROVIDER_INFO_RDNS,
},
{
id: "braavos",
name: "Braavos",
id: "keplr",
name: "Keplr",
icon: process.env.KEPLR_EXT_STARKNET_PROVIDER_INFO_ICON,
}
);
Expand Down
6 changes: 1 addition & 5 deletions packages/provider/src/inject.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,7 @@ export function injectKeplrToWindow(keplr: IKeplr): void {
keplr.getEnigmaUtils
);

defineUnwritablePropertyIfPossible(
window,
"starknet_braavos",
keplr.starknet
);
defineUnwritablePropertyIfPossible(window, "starknet_keplr", keplr.starknet);
}

/**
Expand Down

0 comments on commit 33a93b1

Please sign in to comment.