mirror of
https://github.com/diced/zipline.git
synced 2026-04-28 10:43:06 -07:00
fix: random typos
This commit is contained in:
@@ -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{' '}
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -474,7 +474,6 @@ export default typedPlugin(
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
.refine((data) => Object.keys(data).length > 0, {
|
||||
message: 'No settings provided to update',
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user