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
2 changes: 1 addition & 1 deletion apps/web/src/components/flows/FlowHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ function PublishToCommunityModal({ flow, onClose }: { flow: Flow; onClose: () =>
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ tags }),
});
if (res.status === 400) { setErr('No community key configured. Add it in Settings → Community to publish.'); return; }
if (res.status === 400) { setErr('Publishing to the community hub is not configured on this instance.'); return; }
if (res.status === 409) { setErr('Publish a version of this flow first, then publish it to the community.'); return; }
if (res.status === 403) { setErr('Only workspace owners, admins, and editors can publish.'); return; }
if (!res.ok) { setErr('Publish failed. Try again.'); return; }
Expand Down
73 changes: 0 additions & 73 deletions apps/web/src/components/settings/CommunitySettings.tsx

This file was deleted.

1 change: 0 additions & 1 deletion apps/web/src/layouts/SettingsLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ const NAV_SECTIONS = [
items: [
{ href: '/app/settings/workspace', label: 'Workspace' },
{ href: '/app/settings/api-keys', label: 'API Keys' },
{ href: '/app/settings/community', label: 'Community' },
{ href: '/app/settings/dev', label: 'Dev / AgentLens' },
],
},
Expand Down
17 changes: 0 additions & 17 deletions apps/web/src/pages/app/settings/community.astro

This file was deleted.

Loading