Add copyable User Id field

This commit is contained in:
Robert Long 2022-01-21 16:36:21 -08:00
parent f2c3c82d3a
commit f7cb015390

View file

@ -52,6 +52,16 @@ export function ProfileModal({
<Modal title="Profile" isDismissable {...rest}>
<ModalContent>
<form onSubmit={onSubmit}>
<FieldRow>
<InputField
id="userId"
name="userId"
label="User Id"
type="text"
disabled
value={client.getUserId()}
/>
</FieldRow>
<FieldRow>
<InputField
id="displayName"