Skip to content

Commit a296e31

Browse files
committed
Fix Git screen
1 parent 439d3bc commit a296e31

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { ComponentMeta, Story } from "@storybook/react"
2+
import GitAuthPage from "./GitAuthPage"
3+
4+
export default {
5+
title: "pages/GitAuthPage",
6+
component: GitAuthPage,
7+
} as ComponentMeta<typeof GitAuthPage>
8+
9+
const Template: Story = (args) => <GitAuthPage {...args} />
10+
11+
export const Default = Template.bind({})
12+
Default.args = {}

site/src/pages/GitAuthPage/GitAuthPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ const GitAuthPage: React.FC = () => {
1010

1111
return (
1212
<SignInLayout>
13-
<Welcome message="Your Git is authenticated!" />
13+
<Welcome message="Authenticated with Git!" />
1414
<p className={styles.text}>
15-
Return to your terminal to keep coding.
15+
Your Git authentication token will be refreshed to keep you signed in.
1616
</p>
1717

1818
<div className={styles.links}>

0 commit comments

Comments
 (0)