Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions examples/playground/src/playground/components/PeersPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function PeersPanel({
title={
authEnabled && !(authCanIssue || authCanDelegate)
? "Verify-only tabs can’t mint invites. Open a minting peer (or import a grant with share permission)."
: "New device (isolated): separate storage, auto-invite"
: "New device (isolated): separate storage, auto-grant"
}
>
<MdLockOutline className="text-[16px]" />
Expand Down Expand Up @@ -133,4 +133,3 @@ export function PeersPanel({
</div>
);
}

Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ export function ShareSubtreeDialog(props: ShareSubtreeDialogProps) {
disabled={authBusy || !authEnabled || !(authCanIssue || authCanDelegate)}
title={
authCanIssue || authCanDelegate
? "Open an isolated device tab and auto-import the invite"
? "Open an isolated device tab and auto-grant access"
: "This tab can’t mint invites (verify-only)"
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export function TreePanel({
title={
authEnabled && !(authCanIssue || authCanDelegate)
? "Verify-only tabs can’t mint invites. Open a minting peer (or import a grant with share permission)."
: "New device (isolated): separate storage (no shared keys/private-roots). Auto-invite; Alt+click opens join-only."
: "New device (isolated): separate storage (no shared keys/private-roots). Auto-grant; Alt+click opens join-only."
}
aria-label="New device (isolated)"
>
Expand Down
Loading