Skip to content

Commit

Permalink
fix: domain
Browse files Browse the repository at this point in the history
  • Loading branch information
diced committed Aug 9, 2023
1 parent faf5098 commit 4d728f9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ contact_links:
url: https://discord.gg/EAhCRfGxCF
about: Ask for help with anything related to Zipline!
- name: Zipline Docs
url: https://zipline.diced.vercel.app
url: https://zipline.diced.sh
about: Maybe take a look a the docs?
3 changes: 1 addition & 2 deletions src/components/pages/Manage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,7 @@ export default function Manage({ oauth_registration, oauth_providers: raw_oauth_
<Title>Manage User</Title>
<MutedText size='md'>
Want to use variables in embed text? Visit{' '}
<AnchorNext href='https://zipline.diced.vercel.app/docs/guides/variables'>the docs</AnchorNext> for
variables
<AnchorNext href='https://zipline.diced.sh/docs/guides/variables'>the docs</AnchorNext> for variables
</MutedText>

<TextInput
Expand Down
4 changes: 2 additions & 2 deletions src/lib/config/validateConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const validator = s.object({
)
.default([
{ label: 'Zipline', link: 'https://github.com/diced/zipline' },
{ label: 'Documentation', link: 'https://zipline.diced.vercel.app/' },
{ label: 'Documentation', link: 'https://zipline.diced.sh/' },
]),
})
.default({
Expand All @@ -155,7 +155,7 @@ const validator = s.object({

external_links: [
{ label: 'Zipline', link: 'https://github.com/diced/zipline' },
{ label: 'Documentation', link: 'https://zipline.diced.vercel.app/' },
{ label: 'Documentation', link: 'https://zipline.diced.sh/' },
],
}),
discord: s
Expand Down
8 changes: 1 addition & 7 deletions src/lib/spotlight.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,7 @@ export const createSpotlightActions = (router: NextRouter): SpotlightAction[] =>
});
}),

actionLink(
'Help',
'Documentation',
'View the documentation',
'https://zipline.diced.vercel.app',
<IconHelp />
),
actionLink('Help', 'Documentation', 'View the documentation', 'https://zipline.diced.sh', <IconHelp />),

// the list of actions here is very incomplete, and will be expanded in the future
];
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ async function handler(_: NextApiReq, res: NextApiRes) {

const pkg = JSON.parse(await readFile('package.json', 'utf8'));

const re = await fetch('https://zipline.diced.vercel.app/api/version?c=' + pkg.version);
const re = await fetch('https://zipline.diced.sh/api/version?c=' + pkg.version);
const json = await re.json();

let updateToType = 'stable';
Expand Down

0 comments on commit 4d728f9

Please sign in to comment.