fix: change outdated url (#172)

* Fix outdated url

Updated to resolve merge conflicts

* Update index.tsx

Fix #2
This commit is contained in:
Wolfy0615 2022-09-28 22:50:01 -04:00 committed by GitHub
parent 9ac876e30a
commit 75a8bb7962
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -230,7 +230,7 @@ export default function Manage() {
return (
<>
<Title>Manage User</Title>
<MutedText size='md'>Want to use variables in embed text? Visit <Link href='https://zipline.diced.cf/docs/variables'>the docs</Link> for variables</MutedText>
<MutedText size='md'>Want to use variables in embed text? Visit <Link href='https://zipline.diced.tech/docs/guides/variables'>the docs</Link> for variables</MutedText>
<form onSubmit={form.onSubmit((v) => onSubmit(v))}>
<TextInput id='username' label='Username' {...form.getInputProps('username')} />
<PasswordInput id='password' label='Password' description='Leave blank to keep your old password' {...form.getInputProps('password')} />
@ -309,4 +309,4 @@ export default function Manage() {
<Flameshot user={user} open={flameshotOpen} setOpen={setFlameshotOpen} />
</>
);
}
}