* adds styling changes for brand consistency

* reverts some prettier snafus

Co-authored-by: Raj Gokal <raj@solana.com>
This commit is contained in:
Raj Gokal
2020-03-29 11:54:51 -07:00
committed by Michael Vines
parent 52f5934c3d
commit 1ad1ba73fa
137 changed files with 1769 additions and 39 deletions

View File

@@ -11,8 +11,7 @@ function NetworkStatusButton({ onClick }: { onClick: () => void }) {
function Button() {
const { status, network, name, customUrl } = useNetwork();
const statusName =
network !== Network.Custom ? `${name} Cluster` : `${customUrl}`;
const statusName = network !== Network.Custom ? `${name}` : `${customUrl}`;
switch (status) {
case NetworkStatus.Connected: