1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

fix: project tokens path typo (#6468)

Noticed a small typo in the path shown in the project API access side
panel.
This commit is contained in:
Nuno Góis 2024-03-08 07:44:48 +00:00 committed by GitHub
parent 8f2631e418
commit 9148820a8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -53,7 +53,7 @@ export const CreateProjectApiTokenForm = () => {
usePageTitle(pageTitle); usePageTitle(pageTitle);
const PATH = `api/admin/project/${projectId}/api-tokens`; const PATH = `api/admin/projects/${projectId}/api-tokens`;
const permission = CREATE_PROJECT_API_TOKEN; const permission = CREATE_PROJECT_API_TOKEN;
const handleSubmit = async (e: Event) => { const handleSubmit = async (e: Event) => {