Skip to content

Commit

Permalink
fix: Remove beta warning from connect modal. (#88)
Browse files Browse the repository at this point in the history
Studio is no longer in beta, so remove the warning from the connect
modal.

Closes: #87
  • Loading branch information
petejohanson authored Nov 13, 2024
1 parent a01ed76 commit 6edb4b0
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions src/ConnectModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useCallback, useEffect, useMemo, useState } from "react";
import type { RpcTransport } from "@zmkfirmware/zmk-studio-ts-client/transport/index";
import { UserCancelledError } from "@zmkfirmware/zmk-studio-ts-client/transport/errors";
import type { AvailableDevice } from "./tauri/index";
import { Bluetooth, RefreshCw, TriangleAlert } from "lucide-react";
import { Bluetooth, RefreshCw } from "lucide-react";
import { Key, ListBox, ListBoxItem, Selection } from "react-aria-components";
import { useModalRef } from "./misc/useModalRef";
import { ExternalLink } from "./misc/ExternalLink";
Expand Down Expand Up @@ -284,18 +284,6 @@ export const ConnectModal = ({

return (
<GenericModal ref={dialog} className="max-w-xl">
<div className="rounded my-2 p-2 border">
<TriangleAlert className="size-8 inline-block m-2 float-left" />
<p className="text-lg">ZMK Studio is in beta testing.</p>
<p>
Although every effort has been made to provide a stable experience,
you may still encounter issues during use. Please report any issues to{" "}
<ExternalLink href="https://github.com/zmkfirmware/zmk-studio/issues">
GitHub issues
</ExternalLink>
.
</p>
</div>
<h1 className="text-xl">Welcome to ZMK Studio</h1>
{haveTransports
? connectOptions(transports, onTransportCreated, open)
Expand Down

0 comments on commit 6edb4b0

Please sign in to comment.