chore: add changes tips

This commit is contained in:
jialin
2025-04-08 16:33:19 +08:00
parent c09503aad8
commit 5766a50bc2
15 changed files with 82 additions and 45 deletions
@@ -31,15 +31,15 @@ const AddWorker: React.FC<ViewModalProps> = (props) => {
return commandCode?.registerWorker({
server: origin,
tag: version,
token: '${mytoken}',
workerip: '${myworkerip}'
token: '${token}',
workerip: '${workerip}'
});
}
return commandCode?.registerWorker({
server: origin,
tag: `${version}-${activeKey}`,
token: '${mytoken}',
workerip: '${myworkerip}'
token: '${token}',
workerip: '${workerip}'
});
}, [versionInfo, activeKey, props.token]);
@@ -50,7 +50,7 @@ const AddWorker: React.FC<ViewModalProps> = (props) => {
<HighlightCode
code={addWorkerGuide.mac.registerWorker({
server: origin,
token: '${mytoken}'
token: '${token}'
})}
theme="dark"
></HighlightCode>
@@ -59,7 +59,7 @@ const AddWorker: React.FC<ViewModalProps> = (props) => {
theme="dark"
code={addWorkerGuide.win.registerWorker({
server: origin,
token: '${mytoken}'
token: '${token}'
})}
></HighlightCode>
<h3 className="m-b-0 m-t-10 font-size-14 font-600">3. {labels.step3}</h3>