1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: invite link page docs (#2166)

This commit is contained in:
Tymoteusz Czech 2022-10-14 09:54:15 +02:00 committed by GitHub
parent a3bf564100
commit 1f8c4f7c49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -136,9 +136,9 @@ export const InviteLink: VFC<ICreateInviteLinkProps> = () => {
<FormTemplate
loading={loading || isSending}
title={isUpdating ? 'Update invite link' : 'Create invite link'}
description="When you send an invite link to a someone, they will be able to create an account and get access to Unleash. This new user will only have read access, until you change their assigned role."
documentationLink="https://docs.getunleash.io/user_guide/rbac#standard-roles" // FIXME: update
documentationLinkLabel="User management documentation"
description="When you send an invite link to someone, they will be able to create an account and get access to Unleash. This new user will only have read access, until you change their assigned role."
documentationLink="https://docs.getunleash.io/reference/public-signup"
documentationLinkLabel="Invite link documentation"
formatApiCode={formatApiCode}
>
<Box

View File

@ -1,4 +1,4 @@
import { useCallback, useContext, useEffect } from 'react';
import { useCallback, useContext } from 'react';
import { PlausibleContext } from 'contexts/PlausibleContext';
import { EventOptions, PlausibleOptions } from 'plausible-tracker';