UX tweaks, traits bug fix, adding member info

This commit is contained in:
2026-04-16 11:50:11 -07:00
parent 7b624b3238
commit 8ff071c69b
43 changed files with 3248 additions and 3816 deletions

View File

@@ -1,6 +1,6 @@
namespace MicCheck.Api.Identities;
public record TraitResponse(string TraitKey, string TraitValue)
public record TraitResponse(string Key, string Value)
{
public static TraitResponse From(IdentityTrait trait) =>
new(trait.Key, trait.Value);