Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 0 additions & 21 deletions components/dashboard/src/components/UsageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import { ReactComponent as Spinner } from "../icons/Spinner.svg";
import { ReactComponent as UsageIcon } from "../images/usage-default.svg";
import { toRemoteURL } from "../projects/render-utils";
import { WorkspaceType } from "@gitpod/gitpod-protocol";
import PillLabel from "./PillLabel";
import { SupportedWorkspaceClass } from "@gitpod/gitpod-protocol/lib/workspace-class";
import DatePicker from "react-datepicker";
import "react-datepicker/dist/react-datepicker.css";
Expand Down Expand Up @@ -267,26 +266,6 @@ function UsageView({ attributionId }: UsageViewProps) {
<span>{totalCreditsUsed.toLocaleString()} Credits</span>
</div>
</div>
<div className="flex flex-col truncate mt-8 text-sm">
<div className="text-gray-400 dark:text-gray-500 text-sm text-left">
<strong>Usage</strong> feature is in{" "}
<PillLabel
type="warn"
className="font-semibold mt-2 ml-0 py-0.5 px-1 self-center"
>
<a href="https://www.gitpod.io/docs/references/gitpod-releases">
<span className="text-xs">Early Access</span>
</a>
</PillLabel>
<br />
<a
href="https://github.com/gitpod-io/gitpod/issues/12636"
className="gp-link"
>
Send feedback
</a>
</div>
</div>
</div>
)}
</div>
Expand Down
13 changes: 0 additions & 13 deletions components/dashboard/src/projects/NewProject.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import {
} from "../service/public-api";
import { FeatureFlagContext } from "../contexts/FeatureFlagContext";
import { ConnectError } from "@bufbuild/connect-web";
import PillLabel from "../components/PillLabel";

export default function NewProject() {
const location = useLocation();
Expand Down Expand Up @@ -482,18 +481,6 @@ export default function NewProject() {
</div>
</div>
)}
<div className="text-gray-400 dark:text-gray-500 text-sm mt-24 text-left">
<strong>Projects</strong> feature is in{" "}
<PillLabel type="warn" className="font-semibold mt-2 ml-0 py-0.5 px-1 self-center">
<a href="https://www.gitpod.io/docs/references/gitpod-releases">
<span className="text-xs">BETA</span>
</a>
</PillLabel>
&nbsp;&middot;&nbsp;
<a href="https://github.com/gitpod-io/gitpod/issues/5095" className="gp-link">
Send feedback
</a>
</div>
</>
);

Expand Down
14 changes: 0 additions & 14 deletions components/dashboard/src/teams/NewTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import { TeamsContext } from "./teams-context";
import { publicApiTeamsToProtocol, publicApiTeamToProtocol, teamsService } from "../service/public-api";
import { FeatureFlagContext } from "../contexts/FeatureFlagContext";
import { ConnectError } from "@bufbuild/connect-web";
import PillLabel from "../components/PillLabel";

export default function () {
const { setTeams } = useContext(TeamsContext);
Expand Down Expand Up @@ -87,19 +86,6 @@ export default function () {
</button>
</div>
</form>

<div className="text-gray-400 dark:text-gray-500 text-sm mt-24 text-left">
<strong>Teams</strong> feature is in{" "}
<PillLabel type="warn" className="font-semibold mt-2 ml-0 py-0.5 px-1 self-center">
<a href="https://www.gitpod.io/docs/references/gitpod-releases">
<span className="text-xs">BETA</span>
</a>
</PillLabel>
&nbsp;&middot;&nbsp;
<a href="https://github.com/gitpod-io/gitpod/issues/5095" className="gp-link">
Send feedback
</a>
</div>
</div>
);
}