fix(config): 🐛 Ensure bridge config is optional

This commit is contained in:
Jesse Wierzbinski 2024-07-16 23:33:11 +02:00
parent aae99c804a
commit f2c9814171
No known key found for this signature in database

View file

@ -478,7 +478,6 @@ export const configValidator = z.object({
software: "lysand-ap",
allowed_ips: [],
token: "",
url: "",
})
.refine(
(arg) => (arg.enabled ? arg.url : true),