From 8a393b1d5e2dc6b687ecd0611f59a3470d58dbe3 Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Wed, 5 Mar 2025 14:54:32 +0100 Subject: [PATCH] fix --- src/Core/Services/Implementations/UserService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index 4d2cb45d93..25854e06a9 100644 --- a/src/Core/Services/Implementations/UserService.cs +++ b/src/Core/Services/Implementations/UserService.cs @@ -41,7 +41,7 @@ namespace Bit.Core.Services; public class UserService : UserManager, IUserService, IDisposable { private const string PremiumPlanId = "premium-annually"; - private const string StoragePlanId = "storage-gb-annually"; + private const string StoragePlanId = "personal-storage-gb-annually"; private readonly IUserRepository _userRepository; private readonly ICipherRepository _cipherRepository;