@tinytars/frame 0.1.12 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinytars/frame",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "description": "Domain-neutral Svelte app-shell: session/auth controllers, account chrome, and menu/card/modal primitives built on @tinytars/vault.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -226,7 +226,7 @@ export function createRosterSession(deps: RosterSessionDeps): RosterSession {
226
226
  const name = p.displayName?.trim() ?? "";
227
227
  if (!p.email) return name;
228
228
  // Exact match against the verbatim local-part — that is the untouched auto value. A
229
- // capitalised or edited name like "Liz" is a real, human-set one and stands.
229
+ // capitalised or edited name like "Blair" is a real, human-set one and stands.
230
230
  const localPart = p.email.split("@")[0];
231
231
  return name === "" || name === "New member" || name === localPart ? p.email : name;
232
232
  },