Skip to content

Commit

Permalink
fix: project tokens path typo (#6468)
Browse files Browse the repository at this point in the history
Noticed a small typo in the path shown in the project API access side
panel.
  • Loading branch information
nunogois committed Mar 8, 2024
1 parent 8f2631e commit 9148820
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -53,7 +53,7 @@ export const CreateProjectApiTokenForm = () => {

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 handleSubmit = async (e: Event) => {
Expand Down

0 comments on commit 9148820

Please sign in to comment.