Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit d66c28f

Browse files
committed
chore: add link to documentation
1 parent 972c7b9 commit d66c28f

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

src/pages/apps/new/github/NewGithubApp.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe("~/pages/apps/new/github/NewGithubApp.tsx", () => {
2323
const createWrapper = (props?: Props) => {
2424
mockFetchInstanceDetails({
2525
response: {
26-
update: { ui: false, api: false },
26+
update: { api: false },
2727
auth: { github: props?.github || "stormkit-dev" },
2828
},
2929
});

src/pages/apps/new/github/NewGithubApp.tsx

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,22 @@ export default function NewGithubApp() {
8080
)
8181
}
8282
error={
83-
!githubAccount && !detailsLoading
84-
? "You don't seem to have a GITHUB_ACCOUNT configured."
85-
: ""
83+
!githubAccount && !detailsLoading ? (
84+
<>
85+
You don't seem to have a{" "}
86+
<Box component="code">GITHUB_APP_NAME</Box> configured.{" "}
87+
<Link
88+
href="https://www.stormkit.io/docs/welcome/self-hosting#authentication"
89+
rel="noreferrer noopener"
90+
target="_blank"
91+
>
92+
Learn more
93+
</Link>
94+
.
95+
</>
96+
) : (
97+
""
98+
)
8699
}
87100
>
88101
<CardHeader

0 commit comments

Comments
 (0)