Skip to content

Commit

Permalink
Update autogpt_platform/frontend/src/components/integrations/credenti…
Browse files Browse the repository at this point in the history
…als-input.tsx

Co-authored-by: Reinier van der Leer <[email protected]>
  • Loading branch information
ntindle and Pwuts authored Oct 1, 2024
1 parent 2004d80 commit 3ebc7dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export const CredentialsInput: FC<{
} catch (error) {
console.error("Error in OAuth callback:", error);
setOAuthError(
`Error in OAuth callback: ${error instanceof Error ? error.message : String(error)}`,
`Error in OAuth callback: ${error instanceof Error ? error.message : error.toString()}`,
);
} finally {
console.debug("Finalizing OAuth flow");
Expand Down

0 comments on commit 3ebc7dd

Please sign in to comment.