Skip to content

Commit

Permalink
devop: remove trezor from safari
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Oct 23, 2024
1 parent 4a762a1 commit 6e52981
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@enkryptcom/extension",
"version": "1.45.0",
"version": "1.45.1",
"private": true,
"scripts": {
"zip": "cd dist; zip -r release.zip *;",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ hwWallet
networkName: route.query.network as NetworkNames,
})
.then((paths) => {
if (paths) isTrezorSupported.value = true;
if (paths) isTrezorSupported.value = !(
process.env.IS_FIREFOX || process.env.IS_SAFARI
);
})
.catch(() => ({}));
</script>
Expand Down

0 comments on commit 6e52981

Please sign in to comment.