refactor(private-zone): use canonical product name

This commit is contained in:
Codex
2026-07-23 10:53:41 +08:00
parent a4c4ca6666
commit d2a46ff6b9
105 changed files with 578 additions and 578 deletions
+3 -3
View File
@@ -246,8 +246,8 @@ export function ChatScreen() {
);
}
function handleOpenCharacterPrivateZoom(): void {
router.push(characterRoutes.privateZoom);
function handleOpenCharacterPrivateZone(): void {
router.push(characterRoutes.privateZone);
}
return (
@@ -297,7 +297,7 @@ export function ChatScreen() {
onUnlockImageMessage={handleUnlockImageMessage}
onOpenImage={handleOpenImage}
onUserAvatarClick={handleOpenUserProfile}
onCharacterAvatarClick={handleOpenCharacterPrivateZoom}
onCharacterAvatarClick={handleOpenCharacterPrivateZone}
onLoadMoreHistory={() => {
chatDispatch({ type: "ChatLoadMoreHistoryRequested" });
}}