Skip to content

Commit 85f898f

Browse files
committed
Remove nonbreaking space from settings
1 parent f48df1f commit 85f898f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

components/dashboard/src/admin/Settings.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { adminMenu } from "./admin-menu";
1414
import { useEffect, useState } from "react";
1515
import InfoBox from "../components/InfoBox";
1616
import { isGitpodIo } from "../utils";
17-
import Separator from "../components/Separator";
1817

1918
export default function Settings() {
2019
const { adminSettings, setAdminSettings } = useContext(AdminContext);
@@ -48,7 +47,9 @@ export default function Settings() {
4847
<h3>Usage Statistics</h3>
4948
<p className="text-base text-gray-500 pb-4 max-w-2xl">
5049
We collect usage telemetry to gain insights on how you use your Gitpod instance, so we can provide a
51-
better overall experience.{" "}
50+
better overall experience.
51+
</p>
52+
<p>
5253
<a className="gp-link" href="https://www.gitpod.io/privacy">
5354
Read our Privacy Policy
5455
</a>
@@ -84,8 +85,7 @@ export default function Settings() {
8485
} as InstallationAdminSettings)
8586
}
8687
/>
87-
<Separator />
88-
<h3>Telemetry preview</h3>
88+
<h3 className="mt-4">Telemetry preview</h3>
8989
<InfoBox>
9090
<pre>{JSON.stringify(telemetryData, null, 2)}</pre>
9191
</InfoBox>

0 commit comments

Comments
 (0)