fix(core): pass name of null param

This commit is contained in:
Stevan Freeborn
2026-02-13 04:37:47 -06:00
parent 823ba4dc5a
commit 0b7c33a024
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()
{