Rename Toggle component to Details

It's much more like a details / disclosure view you can expand than a typically
toggle switch.
This commit is contained in:
J. Ryan Stinnett
2020-10-29 15:13:37 +00:00
parent 0e75ad078d
commit 74c45f93ad
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -63,7 +63,7 @@ const InviteTile: React.FC<IProps> = ({ children, client, link }: IProps) => {
break;
}
const advancedToggle = (
const advancedButton = (
<p>
{inviteUseString}
<TextButton
@@ -77,7 +77,7 @@ const InviteTile: React.FC<IProps> = ({ children, client, link }: IProps) => {
invite = (
<>
{invite}
{advancedToggle}
{advancedButton}
</>
);
}