Skip to content

fix: disable auto-create if external auth requirements aren't met #12538

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Mar 19, 2024
Prev Previous commit
oejfa;oihegfiou'awrgiuhwaeoug'awikuehjfo;ia
  • Loading branch information
aslilac committed Mar 19, 2024
commit c30988cdaaea98bccd0738bee7f91ea1c0323bf7
2 changes: 1 addition & 1 deletion site/src/api/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const getValidationErrorMessage = (error: unknown): string => {

export const getErrorDetail = (error: unknown): string | undefined | null => {
if (error instanceof Error) {
return `Please check the developer console for more details.`;
return "Please check the developer console for more details.";
}
if (isApiError(error)) {
return error.response.data.detail;
Expand Down