Skip to content

Commit

Permalink
Pass access_token to namespace getter
Browse files Browse the repository at this point in the history
- Fixes register buttons for non admin users
  • Loading branch information
CannonLock committed Nov 15, 2024
1 parent 668cff4 commit 40e6678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web_ui/frontend/app/registry/components/PutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const PutPage = ({ update }: NamespaceFormPage) => {
if (e instanceof Error) {
setAlert({ severity: 'error', message: e.message });
}
setAlert({ severity: 'error', message: "Could not fetch namespace" });
setAlert({ severity: 'error', message: 'Could not fetch namespace' });
}
}
})();
Expand Down

0 comments on commit 40e6678

Please sign in to comment.