Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Update registration copy
Alexis Sellier committed 4 years ago
commit 767355b78239f7deaf7b6b98f58097c327c1d0a5
parent b60e78fecb93782817eb14f76772342152f4626a
2 files changed +1 -2
modified src/base/registrations/New.svelte
@@ -79,7 +79,7 @@
        for <strong>{fee} RAD</strong>.
      {/if}
    {:else if state === State.NameUnavailable}
-
      The name <span class="highlight">{subdomain}</span> is not available for registration.
+
      This name is <strong>not available</strong> for registration.
    {:else if state === State.CheckingAvailability}
      <Loading small center />
    {:else if state === State.CheckingFailed && error}
modified src/base/registrations/registrar.ts
@@ -46,7 +46,6 @@ export type Connection =
  | { connection: State.Registering }
  | { connection: State.Registered };

-

export const state = writable<Connection>({ connection: State.Connecting });

window.registrarState = state;