fix: prettier
This commit is contained in:
parent
dafde04c2c
commit
4ef82bdff4
1 changed files with 11 additions and 9 deletions
|
@ -140,15 +140,17 @@ const validator = s.object({
|
||||||
{ label: 'Documentation', link: 'https://zipline.diced.tech/' },
|
{ label: 'Documentation', link: 'https://zipline.diced.tech/' },
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
discord: s.object({
|
discord: s
|
||||||
url: s.string,
|
.object({
|
||||||
username: s.string.default('Zipline'),
|
url: s.string,
|
||||||
avatar_url: s.string.default(
|
username: s.string.default('Zipline'),
|
||||||
'https://raw.githubusercontent.com/diced/zipline/9b60147e112ec5b70170500b85c75ea621f41d03/public/zipline.png'
|
avatar_url: s.string.default(
|
||||||
),
|
'https://raw.githubusercontent.com/diced/zipline/9b60147e112ec5b70170500b85c75ea621f41d03/public/zipline.png'
|
||||||
upload: discord_content,
|
),
|
||||||
shorten: discord_content,
|
upload: discord_content,
|
||||||
}).nullish.default(null),
|
shorten: discord_content,
|
||||||
|
})
|
||||||
|
.nullish.default(null),
|
||||||
oauth: s
|
oauth: s
|
||||||
.object({
|
.object({
|
||||||
github_client_id: s.string.nullable.default(null),
|
github_client_id: s.string.nullable.default(null),
|
||||||
|
|
Loading…
Reference in a new issue