Skip to content

Commit

Permalink
update example env
Browse files Browse the repository at this point in the history
  • Loading branch information
futurepaul committed Oct 2, 2023
1 parent ee02c55 commit ccb7f37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ VITE_PROXY="wss://p.mutinywallet.com"
VITE_ESPLORA="https://mutinynet.com/api"
VITE_LSP="https://signet-lsp.mutinywallet.com"
VITE_RGS="https://rgs.mutinynet.com/snapshot/"
VITE_SELFHOSTED="true"
# VITE_SELFHOSTED="true" // Removes Mutiny+
VITE_AUTH="https://auth-staging.mutinywallet.com"
VITE_SUBSCRIPTIONS="https://subscriptions-staging.mutinywallet.com"
VITE_STORAGE="https://storage-staging.mutinywallet.com/v2"
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/en/translations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
pending: "Pending",
error_safe_mode:
"Mutiny is running in safe mode. Lightning is disabled.",
self_hosted: "Self-hosted",
self_hosted: "Self-hosted"
},
contacts: {
new: "new",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default function App() {
</Show>
<Show when={state.settings?.selfhosted === "true"}>
<div class="text-white-400 -my-1 box-border w-fit rounded bg-neutral-800 px-2 py-1 text-xs uppercase">
{i18n.t("common.self_hosted")}
{i18n.t("common.self_hosted")}
</div>
</Show>
</div>
Expand Down

0 comments on commit ccb7f37

Please sign in to comment.