0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-17 22:04:19 -05:00

fix(console): change step title to sentence case (#1814)

This commit is contained in:
Wang Sijie 2022-08-25 17:05:42 +08:00 committed by GitHub
parent a66890dc53
commit 82cd31545d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 12 additions and 12 deletions

View file

@ -121,7 +121,7 @@ public class MainActivity extends AppCompatActivity {
</Step>
<Step
title="Sign In"
title="Sign in"
subtitle="2 steps"
index={2}
activeIndex={props.activeStepIndex}
@ -169,7 +169,7 @@ After signing in successfully, `logtoClient.isAuthenticated` will be `true`.
</Step>
<Step
title="Sign Out"
title="Sign out"
subtitle="1 step"
index={3}
activeIndex={props.activeStepIndex}

View file

@ -74,7 +74,7 @@ let config = try? LogtoConfig(
</Step>
<Step
title="Sign In"
title="Sign in"
subtitle="2 steps"
index={2}
activeIndex={props.activeStepIndex}
@ -107,7 +107,7 @@ Go back to Xcode, use the following code to implement sign-in:
</Step>
<Step
title="Sign Out"
title="Sign out"
subtitle="1 step"
index={3}
activeIndex={props.activeStepIndex}

View file

@ -70,7 +70,7 @@ export const logtoClient = new LogtoClient({
</Step>
<Step
title="Sign In"
title="Sign in"
subtitle="3 steps"
index={2}
activeIndex={props.activeStepIndex}
@ -229,7 +229,7 @@ export const getServerSideProps = logtoClient.withLogtoSsr(async function ({ req
</Step>
<Step
title="Sign Out"
title="Sign out"
subtitle="1 step"
index={5}
activeIndex={props.activeStepIndex}

View file

@ -66,7 +66,7 @@ const App = () => (
</Step>
<Step
title="Sign In"
title="Sign in"
subtitle="3 steps"
index={2}
activeIndex={props.activeStepIndex}
@ -140,7 +140,7 @@ Finally insert the code below to create a `/callback` route which does NOT requi
</Step>
<Step
title="Sign Out"
title="Sign out"
subtitle="1 step"
index={3}
activeIndex={props.activeStepIndex}

View file

@ -60,7 +60,7 @@ const logtoClient = new LogtoClient({
</Step>
<Step
title="Sign In"
title="Sign in"
subtitle="3 steps"
index={2}
activeIndex={props.activeStepIndex}
@ -109,7 +109,7 @@ Now you can test the sign-in flow.
</Step>
<Step
title="Sign Out"
title="Sign out"
subtitle="1 step"
index={3}
activeIndex={props.activeStepIndex}

View file

@ -69,7 +69,7 @@ app.mount("#app");`}
</Step>
<Step
title="Sign In"
title="Sign in"
subtitle="3 steps"
index={2}
activeIndex={props.activeStepIndex}
@ -155,7 +155,7 @@ const router = createRouter({
</Step>
<Step
title="Sign Out"
title="Sign out"
subtitle="1 step"
index={3}
activeIndex={props.activeStepIndex}