This commit is contained in:
jxxghp
2023-06-30 10:19:59 +08:00
parent 0517a580ad
commit 6958fca86c
2 changed files with 3 additions and 3 deletions

View File

@@ -30,9 +30,9 @@ const getApiPath = (types: string[] | string) => {
const getTitle = (types: string[] | string) => {
if (Array.isArray(types)) {
return ['发现', titles[types[0]][types[1]]]
return ['推荐', titles[types[0]][types[1]]]
} else {
return ["发现"]
return ["推荐"]
}
};