From 196cf66d8519276648be5d41e0763f9a9991d1d8 Mon Sep 17 00:00:00 2001 From: Alex Nguyen <150945400+nguyenalex836@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:59:08 -0800 Subject: [PATCH] Typo fix for 'noFineGrainedAccess' --- src/rest/components/RestAuth.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rest/components/RestAuth.tsx b/src/rest/components/RestAuth.tsx index 0eeeb63ddb08..157d03f60922 100644 --- a/src/rest/components/RestAuth.tsx +++ b/src/rest/components/RestAuth.tsx @@ -32,7 +32,7 @@ export function RestAuth({ progAccess, slug, operationTitle }: Props) { // For those operations, we shouldn't display this component if (!progAccess) return null const { userToServerRest, serverToServer, fineGrainedPat, basicAuth = false } = progAccess - const noFineGrainedAcccess = !(userToServerRest || serverToServer || fineGrainedPat) + const noFineGrainedAccess = !(userToServerRest || serverToServer || fineGrainedPat) const heading = basicAuth ? t('basic_auth_heading') : t('fine_grained_access') const headingId = heading.replace('{{ RESTOperationTitle }}', operationTitle) @@ -45,7 +45,7 @@ export function RestAuth({ progAccess, slug, operationTitle }: Props) {