diff --git a/src/components/GitHubConnector.tsx b/src/components/GitHubConnector.tsx index 14266ce..53fcf18 100644 --- a/src/components/GitHubConnector.tsx +++ b/src/components/GitHubConnector.tsx @@ -365,7 +365,24 @@ export function GitHubConnector({ appId, folderName }: GitHubConnectorProps) { {isDisconnecting ? "Disconnecting..." : "Disconnect from repo"} - {syncError &&

{syncError}

} + {syncError && ( +

+ {syncError}{" "} + { + e.preventDefault(); + IpcClient.getInstance().openExternalUrl( + "https://www.dyad.sh/docs/integrations/github#troubleshooting", + ); + }} + className="cursor-pointer text-blue-600 hover:underline dark:text-blue-400" + target="_blank" + rel="noopener noreferrer" + > + See troubleshooting guide + +

+ )} {syncSuccess && (

Successfully pushed to GitHub!

)}