Skip to content

Commit 80b1e7a

Browse files
change links in kiloclaw (#2194)
feat(claw): link onboarding 'Open KiloClaw' button to /claw/chat
1 parent a957a9b commit 80b1e7a

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

apps/web/src/app/(app)/claw/components/ClawDashboard.tsx

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import { ClawHeader } from './ClawHeader';
1616
import { CreateInstanceCard } from './CreateInstanceCard';
1717
import { InstanceControls } from './InstanceControls';
1818
import { InstanceTab } from './InstanceTab';
19-
import { OpenClawButton } from './OpenClawButton';
2019
import { ChangelogTab } from './ChangelogTab';
2120
import { SubscriptionTab } from './SubscriptionTab';
2221
import { ChannelPairingStep } from './ChannelPairingStep';
@@ -326,13 +325,20 @@ function ClawDashboardInner({
326325
</div>
327326
)}
328327
<div className="flex w-full flex-col gap-3">
329-
<OpenClawButton
330-
canShow={gatewayStatus?.state === 'running'}
331-
gatewayUrl={gatewayUrl}
332-
look="hero"
333-
label="Open KiloClaw"
334-
className="w-full py-6 text-base"
335-
/>
328+
{gatewayStatus?.state === 'running' && (
329+
<Button
330+
variant="primary"
331+
className="w-full min-w-[180px] bg-emerald-600 py-6 text-base text-white hover:bg-emerald-700"
332+
onClick={() => {
333+
const base = organizationId
334+
? `/organizations/${organizationId}/claw`
335+
: '/claw';
336+
window.location.href = `${base}/chat`;
337+
}}
338+
>
339+
Open KiloClaw
340+
</Button>
341+
)}
336342
<Button
337343
className="w-full py-6 text-base"
338344
variant="outline"

services/kiloclaw/google-setup/setup.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ console.log(' Your bot can now use Gmail, Calendar, Drive, Docs, Sheets, and mo
722722
console.log('');
723723
console.log(' Next steps:');
724724
console.log(' 1. Redeploy your kiloclaw instance to activate Google services');
725-
console.log(' Go to: https://app.kilo.ai/claw#settings');
725+
console.log(' Go to: https://app.kilo.ai/claw/settings');
726726
if (pushSetupOk) {
727727
console.log(' 2. Gmail push notifications have been enabled automatically.');
728728
} else {

0 commit comments

Comments
 (0)