fix: random typos

This commit is contained in:
diced
2026-04-06 15:23:44 -07:00
parent e3e77c7916
commit 9b7759520c
3 changed files with 5 additions and 6 deletions

View File

@@ -131,7 +131,7 @@ export default function Features({
{...form.getInputProps('featuresMetricsShowUserSpecific', { type: 'checkbox' })}
/>
<Divider />
<Divider label='Thumbnails' />
<SimpleGrid cols={{ base: 1, md: 2 }} spacing='lg'>
<Switch
@@ -166,7 +166,7 @@ export default function Features({
{...form.getInputProps('featuresThumbnailsFormat')}
/>
<Divider />
<Divider label='Version Checking' />
<Switch
label='Version Checking'
@@ -179,7 +179,7 @@ export default function Features({
description={
<>
The URL of the version checking server. The default is{' '}
<Anchor size='xs' href='zipline-version.diced.sh' target='_blank'>
<Anchor size='xs' href='https://zipline-version.diced.sh' target='_blank'>
https://zipline-version.diced.sh
</Anchor>
. Visit the{' '}

View File

@@ -13,7 +13,7 @@ const defaultExternalLinks = [
},
{
name: 'Documentation',
url: 'https://zipline.diced.tech',
url: 'https://zipline.diced.sh',
},
];
@@ -119,7 +119,7 @@ export default function Website({
<JsonInput
label='External Links'
description='The external links to show in the footer. This must be valid JSON.'
description='The external links to show in the footer. This must be valid JSON in the format of an array of objects with "name" and "url" properties. For example: [{"name": "GitHub", "url": "https://github.com/diced/zipline"}]'
formatOnBlur
minRows={1}
maxRows={7}

View File

@@ -474,7 +474,6 @@ export default typedPlugin(
}
}
})
.refine((data) => Object.keys(data).length > 0, {
message: 'No settings provided to update',
});