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
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<script lang="ts">
import Button from "../../../../components/button/Button.svelte";
import { chatOpen, sidebarActions } from "./sidebar-store";

export let beta = false;
</script>

<Button
Expand All @@ -11,5 +9,5 @@
onClick={sidebarActions.toggleChat}
active={$chatOpen}
>
AI {#if beta}(Beta){/if}
AI
</Button>
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@
on:click={() => (generateDataDialog = true)}
>
<Wand size="14px" class="stroke-accent-primary-action" /> Generate data
using AI (beta)
using AI
</DropdownMenu.Item>
{/if}
<DropdownMenu.Separator />
Expand Down
2 changes: 1 addition & 1 deletion web-common/src/layout/ApplicationHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
<CanvasPreviewCTAs canvasName={dashboardName} />
{/if}
{:else if showDeveloperChat}
<ChatToggle beta />
<ChatToggle />
{/if}
{#if showDeployCTA}
<DeployProjectCTA {hasValidDashboard} />
Expand Down
Loading