Skip to content

Commit 2a2381d

Browse files
feat: .env file removed
1 parent 39dfaab commit 2a2381d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

apps/signer/public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/chrome-manifest.json",
3-
"name": "Jstz wallet",
4-
"version": "0.0.1",
3+
"name": "Jstz signer wallet",
4+
"version": "0.5.2",
55
"manifest_version": 3,
66
"icons": {
77
"16": "./icons/icon-16.png",

apps/signer/src/components/NetworkSelect.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import { ChevronRight, X } from "lucide-react";
1212
import { useState } from "react";
1313
import { useVault } from "~/lib/vaultStore.ts";
1414

15-
const presetNetworksString = (import.meta.env.VITE_JSTZ_NETWORKS || "") as string;
15+
const JSTZ_NETWORKS =["http://localhost:8933", "https://sandbox.jstz.info", "https://privatenet.jstz.info"]
1616

1717
export function NetworkSelect() {
18-
const presetNetworks = presetNetworksString.split(", ").map((n) => n.trim());
18+
const presetNetworks = JSTZ_NETWORKS;
1919

2020
const { customNetworks, setCurrentNetwork, currentNetwork, setCustomNetworks } = useVault(
2121
(state) => state,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "jstz-signer",
4-
"version": "0.5.1",
4+
"version": "0.5.2",
55
"type": "module",
66
"private": true,
77
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184",

0 commit comments

Comments
 (0)