We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5f8504 commit e50aff1Copy full SHA for e50aff1
packages/field-plugin/helpers/vite/src/sandbox.ts
@@ -20,7 +20,7 @@ export const buildQueryString = (params: SandboxQueryParams) => {
20
url: params.url,
21
}
22
23
- if (params.manifest !== null) {
+ if (params.manifest !== undefined) {
24
queryParams.manifest = JSON.stringify(params.manifest)
25
26
packages/manifest-helper/src/manifest.ts
@@ -64,7 +64,6 @@ const validateSchema = (manifest: Manifest): void => {
64
validateOptions(manifest.options)
65
66
67
-//NOTE: There is a duplicate of this function in the field-plugin/helpers/vite/src/manifest.ts file
68
const validateOptions = (options: unknown[]): void => {
69
const incorrectValues: string[] = []
70
0 commit comments