diff --git a/src/components/fields/schemaFields/RemoteSchemaObjectField.tsx b/src/components/fields/schemaFields/RemoteSchemaObjectField.tsx index 783ea06321..39f4471307 100644 --- a/src/components/fields/schemaFields/RemoteSchemaObjectField.tsx +++ b/src/components/fields/schemaFields/RemoteSchemaObjectField.tsx @@ -60,14 +60,16 @@ const ChildObjectWidgetContent: React.FC< return ; } + // If there's an issue loading the schema, show a basic object input so mod developers aren't blocked if (remoteSchemaState.error || remoteSchemaState.data == null) { return ( <> - - {/* If there's an issue loading the schema, show a basic object input so mod developers aren't blocked */} + {remoteSchemaState.error && ( + + )} );