75๊ฐ ์ค์๊ฐ์ผ๋ก ํ๋ก์ฐ์ ์๋์ด๋๋ ์ด์ ?
extension ProfileViewModel { func loadUserCountInfo() async {// self.user?.userCountInfo = await UserCountManager.loadUserCountInfo(userId: user?.id) //xcode 15์์ ์๋ฌ ๋ฐ์ //xcode 16 ๋์// let userId = user?.id// self.user?.userCountInfo = await UserCountManager.loadUserCountInfo(userId: userId) guard let userId = user?.id else { return } if let info = await UserCountManager.loadUserCountInfo(userId: userId) { self.postCount = info.postCount self.followerCount = info.followerCount self.followingCount = info.followingCount } }} gpt์ ๋์์ ๋ฐ์์ ์ ์ฅ ์์ฑ์ ์์ ์๋ก ๋ง๋ค์ด์ ์ง์ ๊ฐ์ ํ ๋นํด์ ํด๊ฒฐํ์ต๋๋ค