chore: change repo
This commit is contained in:
@@ -28,7 +28,7 @@ const Version = ({ className, style }: VersionProps) => {
|
||||
<Divider type="vertical" />
|
||||
|
||||
<Badge styles={{ indicator: { transform: "scale(0.75) translate(50%, -50%)" } }} count={hasNewVersion ? "NEW" : undefined}>
|
||||
<Typography.Link type="secondary" href="https://github.com/usual2970/certimate/releases" target="_blank">
|
||||
<Typography.Link type="secondary" href="https://github.com/certimate-go/certimate/releases" target="_blank">
|
||||
{version}
|
||||
</Typography.Link>
|
||||
</Badge>
|
||||
|
||||
@@ -38,7 +38,7 @@ const compareVersions = (a: string, b: string) => {
|
||||
const useVersionChecker = () => {
|
||||
const { data, refresh } = useRequest(
|
||||
async () => {
|
||||
const releases = await fetch("https://api.github.com/repos/usual2970/certimate/releases")
|
||||
const releases = await fetch("https://api.github.com/repos/certimate-go/certimate/releases")
|
||||
.then((res) => res.json())
|
||||
.then((res) => Array.from(res));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user