+
Accesses
}
/>
>
diff --git a/agent/agentUi/src/index.css b/agent/agentUi/src/index.css
index 0a84a20f..39061613 100644
--- a/agent/agentUi/src/index.css
+++ b/agent/agentUi/src/index.css
@@ -1,16 +1,15 @@
-:root {
- font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
- line-height: 1.5;
- font-weight: 400;
-
- color-scheme: light dark;
- color: rgba(255, 255, 255, 0.87);
- background-color: #242424;
-
- font-synthesis: none;
- text-rendering: optimizeLegibility;
+body {
+ margin: 0;
+ font-family: 'Poppins', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
+ padding-bottom: 15px;
+ min-width: 320px;
+ min-height: 100vh;
+}
+
+code {
+ font-family: 'JetBrains Mono', sans-serif;
}
a {
@@ -22,12 +21,6 @@ a:hover {
color: #535bf2;
}
-body {
- margin: 0;
- min-width: 320px;
- min-height: 100vh;
-}
-
h1 {
font-size: 3.2em;
line-height: 1.1;
@@ -51,16 +44,3 @@ button:focus,
button:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}
-
-@media (prefers-color-scheme: light) {
- :root {
- color: #213547;
- background-color: #ffffff;
- }
- a:hover {
- color: #747bff;
- }
- button {
- background-color: #f9f9f9;
- }
-}
diff --git a/agent/status.go b/agent/status.go
index d6f12430..f3dbda59 100644
--- a/agent/status.go
+++ b/agent/status.go
@@ -27,7 +27,7 @@ func (i *agentGrpcImpl) Status(_ context.Context, _ *agentGrpc.StatusRequest) (*
ShareMode: string(shr.shareMode),
BackendMode: string(shr.backendMode),
Reserved: shr.reserved,
- FrontendEndpoint: shr.frontendSelection,
+ FrontendEndpoint: shr.frontendEndpoints,
BackendEndpoint: shr.target,
Closed: shr.closed,
})