Skip to content

Commit 72a0e4f

Browse files
committed
Rename sidebar to Pending changes, button to Push changes, view modes to Diff/Current/Updated
1 parent 8cd226f commit 72a0e4f

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/app/dashboard/apps/[appId]/review-changes/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ export default function ReviewChangesPage() {
308308
return (
309309
<EmptyState
310310
title="No pending changes"
311-
description="All changes have been published or discarded."
311+
description="All changes have been pushed or discarded."
312312
/>
313313
);
314314
}

src/components/layout/dashboard-breadcrumb.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const PAGE_TITLES: Record<string, string> = {
1717
"store-listing": "Store listing",
1818
screenshots: "Screenshots",
1919
review: "App review",
20-
"review-changes": "Publish",
20+
"review-changes": "Pending changes",
2121
reviews: "Customer reviews",
2222
analytics: "Analytics",
2323
sales: "Sales",

src/components/layout/header-version-picker.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ export function HeaderReviewFilters() {
540540
: "text-muted-foreground hover:text-foreground"
541541
}`}
542542
>
543-
{v === "changes" ? "Changes" : v === "before" ? "Before" : "After"}
543+
{v === "changes" ? "Diff" : v === "before" ? "Current" : "Updated"}
544544
</button>
545545
))}
546546
</div>
@@ -619,7 +619,7 @@ function HeaderReviewChangesActions({ appId }: { appId: string }) {
619619
try {
620620
const ok = await publishAll(appId);
621621
if (ok) {
622-
toast.success("All changes published to App Store Connect");
622+
toast.success("All changes pushed to App Store Connect");
623623
} else {
624624
toast.error("Some changes failed to publish – check the remaining items");
625625
}
@@ -644,7 +644,7 @@ function HeaderReviewChangesActions({ appId }: { appId: string }) {
644644
) : (
645645
<CloudArrowUp size={14} />
646646
)}
647-
Publish
647+
Push changes
648648
</Button>
649649
<AlertDialog open={confirmDiscard} onOpenChange={setConfirmDiscard}>
650650
<AlertDialogContent size="sm">

src/components/layout/nav-main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function getNavGroups(appId: string): NavGroup[] {
5353
{ title: "Screenshots", href: `${base}/screenshots`, icon: Images },
5454
{ title: "App details", href: `${base}/details`, icon: Info },
5555
{ title: "App review", href: `${base}/review`, icon: Stamp },
56-
{ title: "Publish", href: `${base}/review-changes`, icon: GitDiff },
56+
{ title: "Pending changes", href: `${base}/review-changes`, icon: GitDiff },
5757
],
5858
},
5959
{

0 commit comments

Comments
 (0)