From a8055de910339e61c6e07bc73bf1ba961b828164 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Thu, 30 Oct 2025 00:28:56 +0800 Subject: [PATCH] :lipstick: Optimize account view on watchOS --- ios/WatchRunner Watch App/Views/AccountView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/WatchRunner Watch App/Views/AccountView.swift b/ios/WatchRunner Watch App/Views/AccountView.swift index 3c104eea..030159fc 100644 --- a/ios/WatchRunner Watch App/Views/AccountView.swift +++ b/ios/WatchRunner Watch App/Views/AccountView.swift @@ -93,11 +93,11 @@ struct AccountView: View { } // Username and Handle - VStack(alignment: .leading, spacing: 4) { + VStack(alignment: .leading) { Text(user.nick) .font(.headline) Text("@\(user.name)") - .font(.subheadline) + .font(.caption) .foregroundColor(.secondary) } }