From 6eb257ac565b3a5ec08d8510f16a394608c363c6 Mon Sep 17 00:00:00 2001
From: George Tsiolis <tsiolis.g@gmail.com>
Date: Wed, 1 Jun 2022 10:52:25 +0300
Subject: [PATCH 1/2] Remove beta label from dotfiles in settings

---
 components/dashboard/src/settings/Preferences.tsx | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/components/dashboard/src/settings/Preferences.tsx b/components/dashboard/src/settings/Preferences.tsx
index 83bc1b4c12e219..9b82726c322f7a 100644
--- a/components/dashboard/src/settings/Preferences.tsx
+++ b/components/dashboard/src/settings/Preferences.tsx
@@ -118,9 +118,6 @@ export default function Preferences() {
 
                 <h3 className="mt-12">
                     Dotfiles{" "}
-                    <PillLabel type="warn" className="font-semibold mt-2 ml-2 py-0.5 px-2 self-center">
-                        Beta
-                    </PillLabel>
                 </h3>
                 <p className="text-base text-gray-500 dark:text-gray-400">Customize workspaces using dotfiles.</p>
                 <div className="mt-4 max-w-xl">

From 2d75a0cfff3a78b624d622da17ed2674e24e86b8 Mon Sep 17 00:00:00 2001
From: Lou Bichard <contact@louisjohnbichard.co.uk>
Date: Wed, 1 Jun 2022 18:47:04 +0100
Subject: [PATCH 2/2] fix: removed pill import

---
 components/dashboard/src/settings/Preferences.tsx | 1 -
 1 file changed, 1 deletion(-)

diff --git a/components/dashboard/src/settings/Preferences.tsx b/components/dashboard/src/settings/Preferences.tsx
index 9b82726c322f7a..ce47dd27507769 100644
--- a/components/dashboard/src/settings/Preferences.tsx
+++ b/components/dashboard/src/settings/Preferences.tsx
@@ -6,7 +6,6 @@
 
 import { useContext, useState } from "react";
 import { PageWithSubMenu } from "../components/PageWithSubMenu";
-import PillLabel from "../components/PillLabel";
 import SelectableCardSolid from "../components/SelectableCardSolid";
 import { getGitpodService } from "../service/service";
 import { ThemeContext } from "../theme-context";