mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
fix(console): get-started markdown file paths
This commit is contained in:
parent
39833e4a42
commit
86c2d37892
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ export type GetStartedType = 'application' | 'connector';
|
||||||
export const useGetStartedSteps = (type: GetStartedType, subtype?: string) => {
|
export const useGetStartedSteps = (type: GetStartedType, subtype?: string) => {
|
||||||
const subPath = subtype ? `/${subtype}` : '';
|
const subPath = subtype ? `/${subtype}` : '';
|
||||||
const publicPath = useMemo(
|
const publicPath = useMemo(
|
||||||
() => `/console/get-started/${type}${subPath}/${i18next.language}`,
|
() => `/console/get-started/${type}${subPath}/${i18next.language}`.toLowerCase(),
|
||||||
[type, subPath]
|
[type, subPath]
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue