Skip to content

Commit

Permalink
minor duckies
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani committed Jan 3, 2025
1 parent c4b8309 commit ab829e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/pages/Admin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function Admin() {
<div>
<h2 className="text-2xl font-medium mb-2">Configuration</h2>
<p className="text-gray-400 mb-6">
Manage ClickHouse configuration settings.
Manage DuckDB configuration settings.
</p>
<ClickhouseDefaultConfiguration />
</div>
Expand All @@ -106,7 +106,7 @@ export default function Admin() {
</li>
<li>
All the actions you take here run queries directly on your
ClickHouse system database, be aware that those can be{" "}
DuckDB system database, be aware that those can be{" "}
<strong className="text-red-500">irreversible.</strong>
</li>
</ul>
Expand Down
12 changes: 6 additions & 6 deletions src/pages/Settings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export default function SettingsPage() {
useAdvanced: false,
customPath: "",
});
toast.success("Disconnected from ClickHouse server.");
toast.success("Disconnected from DuckDB server.");
navigate("/settings");
};

Expand Down Expand Up @@ -162,7 +162,7 @@ export default function SettingsPage() {
Using Environment Variables
</AlertTitle>
<AlertDescription>
Your ClickHouse credentials are set using environment
Your DuckDB credentials are set using environment
variables. Please update your environment variables to change
the connection settings.
</AlertDescription>
Expand All @@ -176,7 +176,7 @@ export default function SettingsPage() {
Connection Settings
</CardTitle>
<CardDescription>
Configure your connection to the ClickHouse server
Configure your connection to the DuckDB server
</CardDescription>
</CardHeader>

Expand All @@ -194,7 +194,7 @@ export default function SettingsPage() {
<FormItem>
<FormLabel className="flex items-center gap-2">
<Server className="h-4 w-4" />
ClickHouse Host
DuckDB API Host
</FormLabel>
<FormControl>
<Input
Expand Down Expand Up @@ -321,7 +321,7 @@ export default function SettingsPage() {
Advanced Settings
</FormLabel>
<FormDescription>
Enable custom path handling for the ClickHouse
Enable custom path handling for the
URL
</FormDescription>
</div>
Expand All @@ -340,7 +340,7 @@ export default function SettingsPage() {
<Input
className="font-mono"
disabled={isLoadingCredentials}
placeholder="clickhouse-{cluster_name}"
placeholder="distributed-{cluster_name}"
{...field}
/>
</FormControl>
Expand Down

0 comments on commit ab829e2

Please sign in to comment.