fix(core): pass name of null param

This commit is contained in:
Stevan Freeborn
2026-02-12 20:46:32 -06:00
parent ead6f534b9
commit 20ec4ac229
5 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ public sealed class RefreshToken : Entity
public static RefreshToken From(User user, string token, DateTimeOffset expiresAt)
{
ArgumentNullException.ThrowIfNull(user);
ArgumentNullException.ThrowIfNull(user, nameof(user));
return new()
{