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:
parent
a66890dc53
commit
82cd31545d
6 changed files with 12 additions and 12 deletions
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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}
|
||||
|
|
Loading…
Add table
Reference in a new issue