We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe49cc commit b22d5c1Copy full SHA for b22d5c1
1 file changed
packages/workshop-app/app/routes/launch-editor.tsx
@@ -44,7 +44,9 @@ export async function action({ request }: ActionFunctionArgs) {
44
.getAll('syncTo.appFile')
45
.filter((value): value is string => typeof value === 'string')
46
if (syncToAppFileValues.length > 1) {
47
- throw new Response('Expected a single syncTo.appFile value', { status: 400 })
+ throw new Response('Expected a single syncTo.appFile value', {
48
+ status: 400,
49
+ })
50
}
51
const syncTo = {
52
type: formData.get('syncTo.type') ?? undefined,
0 commit comments