Skip to content

Commit ca5dbde

Browse files
committed
Revert "/publishers/new -> /publishers"
This reverts commit 975d7cf.
1 parent 975d7cf commit ca5dbde

File tree

4 files changed

+749
-458
lines changed

4 files changed

+749
-458
lines changed

web/src/app/orgs/[slug]/settings/page.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,12 @@ export default function OrganizationSettingsPage() {
294294
</div>
295295

296296
<div className="space-y-6">
297-
{/* Publisher Management - Move to top for prominence */}
297+
{/* Billing & Seats */}
298+
{canManageOrg && organization && (
299+
<BillingStatus organizationId={organization.id} />
300+
)}
301+
302+
{/* Publisher Management */}
298303
{canManageOrg && (
299304
<Card>
300305
<CardHeader>
@@ -320,7 +325,9 @@ export default function OrganizationSettingsPage() {
320325
<h4 className="font-medium">
321326
Organization Publishers ({publishers.length})
322327
</h4>
323-
<Link href={`/publishers?org=${organization.id}`}>
328+
<Link
329+
href={`/publishers/new?org=${organization.id}&type=organization`}
330+
>
324331
<Button className="flex items-center">
325332
<User className="mr-2 h-4 w-4" />
326333
Create Publisher Profile

0 commit comments

Comments
 (0)