From 7018b5c3ecdb772b552b223397fe4b320242c9f6 Mon Sep 17 00:00:00 2001 From: github-tijlxyz <123159729+github-tijlxyz@users.noreply.github.com> Date: Sat, 23 Sep 2023 19:03:13 +0000 Subject: [PATCH] fix typo and more --- main.go | 9 +++++---- ui/src/App.svelte | 6 +++--- ui/src/components/TreeNode.svelte | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/main.go b/main.go index 8c39a3f..6b8088d 100644 --- a/main.go +++ b/main.go @@ -41,10 +41,11 @@ func main() { relay := khatru.NewRelay() relayMaster = os.Getenv("INVITE_RELAY_MASTER") - relay.Name = os.Getenv("RELAY_NAME") - relay.Description = os.Getenv("RELAY_DESCRIPTION") - relay.PubKey = os.Getenv("RELAY_PUBKEY") - relay.Contact = os.Getenv("RELAY_CONTACT") + + // add information here! + relay.Name = "a invite relay" + relay.PubKey = "" + relay.Contact = "" // load whitelist storage if err := loadWhitelist(); err != nil { diff --git a/ui/src/App.svelte b/ui/src/App.svelte index 1d2a356..06c930d 100644 --- a/ui/src/App.svelte +++ b/ui/src/App.svelte @@ -1,6 +1,6 @@