Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ function getCompiledSubcomponents(
let elements = compiledArray.map((compiledChild, index) =>
"_component" in compiledChild ? (
<EditableComponentBuilder
key={index}
compiled={compiledChild}
index={index}
length={compiledArray.length}
Expand Down
3 changes: 2 additions & 1 deletion packages/core/src/resourcesUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import type {
ExternalReferenceNonEmpty,
ExternalSchemaProp,
FetchOutputCompoundResources,
FetchResourceResolvedResult,
NonNullish,
ResponsiveValue,
} from "./types";
Expand Down Expand Up @@ -50,7 +51,7 @@ export function getResolvedExternalDataValue(
configId: string,
fieldName: string,
value: ExternalReferenceNonEmpty
) {
): FetchResourceResolvedResult<NonNullish> | undefined {
const externalReferenceLocationKey =
typeof value.id === "string" && value.id.startsWith("$.")
? value.id
Expand Down
Loading