From 067f994b5cac8542c2962846b01e9c972fcdd5dd Mon Sep 17 00:00:00 2001 From: ckt1031 <65409152+ckt1031@users.noreply.github.com> Date: Wed, 9 Aug 2023 23:14:27 +0800 Subject: [PATCH] fix: update issue --- web/src/components/OtherSetting.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/components/OtherSetting.js b/web/src/components/OtherSetting.js index 8d63c2dd..56239c5f 100644 --- a/web/src/components/OtherSetting.js +++ b/web/src/components/OtherSetting.js @@ -84,12 +84,12 @@ const OtherSetting = () => { const openGitHubRelease = () => { window.location = - 'https://github.com/songquanpeng/one-api/releases/latest'; + 'https://github.com/ckt1031/one-api/releases/latest'; }; const checkUpdate = async () => { const res = await API.get( - 'https://api.github.com/repos/songquanpeng/one-api/releases/latest' + 'https://api.github.com/repos/ckt1031/one-api/releases/latest' ); const { tag_name, body } = res.data; if (tag_name === process.env.REACT_APP_VERSION) {