Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Setup Node.js environment
uses: actions/[email protected]
with:
cache: yarn
cache-dependency-path: yarn.lock
node-version: 20

- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
cache-dependency-path: yarn.lock

- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"

- uses: actions/cache@v2
- uses: actions/cache@v3
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Icon, IconProps } from '@chakra-ui/react'
import React from 'react'

export const IqgptLogo = (props: IconProps) => {
export const AIDENLogo = (props: IconProps) => {
return (
<Icon
xmlns="http://www.w3.org/2000/svg"
Expand Down
6 changes: 3 additions & 3 deletions src/data/SidebarData.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IQLogo } from '@/components/iq-logo'
import { IqgptLogo } from '@/components/iqgpt-logo'
import { AIDENLogo } from '@/components/aiden-logo'
import { IconProps } from '@chakra-ui/react'
import { IconType } from 'react-icons/lib'
import {
Expand Down Expand Up @@ -65,9 +65,9 @@ export const EXTRA_ROUTES: SidebarItemType[] = [
target: '_blank',
},
{
label: 'extraRoutes.iqGpt',
label: 'extraRoutes.aiden',
route: 'https://iqgpt.com',
icon: IqgptLogo,
icon: AIDENLogo,
target: '_blank',
},
]
Expand Down
2 changes: 1 addition & 1 deletion src/messages/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
"learn": "Learn",
"iqAi": "IQ AI",
"iqWiki": "IQ.wiki",
"iqGpt": "IQ.GPT"
"aiden": "AIDEN"
}
}
}
2 changes: 1 addition & 1 deletion src/messages/kr.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
"learn": "학습",
"iqAi": "IQ AI",
"iqWiki": "IQ.wiki",
"iqGpt": "IQ.GPT"
"aiden": "AIDEN"
}
}
}
2 changes: 1 addition & 1 deletion src/messages/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@
"learn": "学习",
"iqAi": "IQ AI",
"iqWiki": "IQ.wiki",
"iqGpt": "IQ.GPT"
"aiden": "AIDEN"
}
}
}
13 changes: 4 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4347,15 +4347,10 @@ camelize@^1.0.0:
resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3"
integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==

caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001503:
version "1.0.30001512"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001512.tgz#7450843fb581c39f290305a83523c7a9ef0d4cb4"
integrity sha512-2S9nK0G/mE+jasCUsMPlARhRCts1ebcp2Ji8Y8PWi4NDE1iRdLCnEPHkEfeBrGC45L4isBx5ur3IQ6yTE2mRZw==

caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669:
version "1.0.30001680"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001680.tgz#5380ede637a33b9f9f1fc6045ea99bd142f3da5e"
integrity sha512-rPQy70G6AGUMnbwS1z6Xg+RkHYPAi18ihs47GH0jcxIG7wArmPgY3XbS2sRdBbxJljp3thdT8BIqv9ccCypiPA==
caniuse-lite@^1.0.30001406, caniuse-lite@^1.0.30001503, caniuse-lite@^1.0.30001646, caniuse-lite@^1.0.30001669:
version "1.0.30001702"
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001702.tgz"
integrity sha512-LoPe/D7zioC0REI5W73PeR1e1MLCipRGq/VkovJnd6Df+QVqT+vT33OXCp8QUd7kA7RZrHWxb1B36OQKI/0gOA==

chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.2:
version "2.4.2"
Expand Down
Loading