Skip to content

Commit

Permalink
Fix typo in getOrgsUrl function calls
Browse files Browse the repository at this point in the history
  • Loading branch information
nickviola committed Mar 13, 2024
1 parent 726cf90 commit 3d5be16
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const OrganizationList: React.FC<{
const regionId = user?.regionId;

const getOrgsUrl = () => {
if (user?.userType == 'regionalAdmin') {
if (user?.userType === 'regionalAdmin') {
return `/organizations/regionId/${regionId}`;
} else {
return `/v2/organizations/`;
Expand Down

0 comments on commit 3d5be16

Please sign in to comment.