Merge branch 'dev' into test

This commit is contained in:
2026-06-25 17:29:49 +08:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ export function SidebarScreen() {
sidebarState !== "guest" && user.currentUser == null;
const name = user.currentUser?.username ?? FALLBACK_USERNAME;
const avatarUrl = user.currentUser?.avatarUrl ?? null;
const avatarUrl = user.avatarUrl ?? user.currentUser?.avatarUrl ?? null;
return (
<MobileShell>
+1 -1
View File
@@ -200,7 +200,7 @@ export function SubscriptionScreen({
selectedPlan !== null && payment.agreed && !isPaymentBusy;
const name = user.currentUser?.username ?? FALLBACK_USERNAME;
const avatarUrl = user.currentUser?.avatarUrl ?? null;
const avatarUrl = user.avatarUrl ?? user.currentUser?.avatarUrl ?? null;
const autoRenewCaption = payment.autoRenew
? "It will automatically renew upon expiration, and can be canceled at any time"
: "This plan is a one-time purchase and will not automatically renew";