mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
Remove beta labels from Copilot Plus (#1690)
- Remove "(beta)" from Copilot Plus in all UI components - Update PlusSettings.tsx heading and description - Update BasicSettings.tsx ChainType label - Update ChatControls.tsx dropdown menu items Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
parent
bc2d7f660a
commit
f652cf0fb3
3 changed files with 8 additions and 8 deletions
|
|
@ -183,7 +183,7 @@ export function ChatControls({
|
|||
{selectedChain === ChainType.COPILOT_PLUS_CHAIN && (
|
||||
<div className="tw-flex tw-items-center tw-gap-1">
|
||||
<Sparkles className="tw-size-4" />
|
||||
copilot plus (beta)
|
||||
copilot plus
|
||||
</div>
|
||||
)}
|
||||
{selectedChain === ChainType.PROJECT_CHAIN && "projects (alpha)"}
|
||||
|
|
@ -213,7 +213,7 @@ export function ChatControls({
|
|||
>
|
||||
<div className="tw-flex tw-items-center tw-gap-1">
|
||||
<Sparkles className="tw-size-4" />
|
||||
copilot plus (beta)
|
||||
copilot plus
|
||||
</div>
|
||||
</DropdownMenuItem>
|
||||
) : (
|
||||
|
|
@ -223,7 +223,7 @@ export function ChatControls({
|
|||
onCloseProject?.();
|
||||
}}
|
||||
>
|
||||
copilot plus (beta)
|
||||
copilot plus
|
||||
<SquareArrowOutUpRight className="tw-size-3" />
|
||||
</DropdownMenuItem>
|
||||
)}
|
||||
|
|
@ -245,7 +245,7 @@ export function ChatControls({
|
|||
onCloseProject?.();
|
||||
}}
|
||||
>
|
||||
copilot plus (beta)
|
||||
copilot plus
|
||||
<SquareArrowOutUpRight className="tw-size-3" />
|
||||
</DropdownMenuItem>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ import { cn } from "@/lib/utils";
|
|||
const ChainType2Label: Record<ChainType, string> = {
|
||||
[ChainType.LLM_CHAIN]: "Chat",
|
||||
[ChainType.VAULT_QA_CHAIN]: "Vault QA (Basic)",
|
||||
[ChainType.COPILOT_PLUS_CHAIN]: "Copilot Plus (beta)",
|
||||
[ChainType.COPILOT_PLUS_CHAIN]: "Copilot Plus",
|
||||
[ChainType.PROJECT_CHAIN]: "Projects (alpha)",
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ export function PlusSettings() {
|
|||
return (
|
||||
<section className="tw-flex tw-flex-col tw-gap-4 tw-rounded-lg tw-bg-secondary tw-p-4">
|
||||
<div className="tw-flex tw-items-center tw-justify-between tw-gap-2 tw-text-xl tw-font-bold">
|
||||
<span>Copilot Plus (beta)</span>
|
||||
<span>Copilot Plus</span>
|
||||
{isPlusUser && (
|
||||
<Badge variant="outline" className="tw-text-success">
|
||||
Active
|
||||
|
|
@ -35,8 +35,8 @@ export function PlusSettings() {
|
|||
image support, web search integration, exclusive chat and embedding models, and much more.
|
||||
</div>
|
||||
<div>
|
||||
Currently in beta, Copilot Plus is evolving fast, with new features and improvements
|
||||
rolling out regularly. Join now to secure the lowest price and get early access!
|
||||
Copilot Plus is evolving fast, with new features and improvements rolling out regularly.
|
||||
Join now to secure the lowest price and get early access!
|
||||
</div>
|
||||
</div>
|
||||
<div className="tw-flex tw-items-center tw-gap-2">
|
||||
|
|
|
|||
Loading…
Reference in a new issue