Skip to content

Commit 7a37e56

Browse files
committed
fix: Type checking errors
1 parent f2e69cc commit 7a37e56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/schema/associations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const multiAssociationLookup: Record<string, MultiLoadFunction> = {
111111
coordsystems: async (
112112
files: BIDSFile[],
113113
options: any,
114-
): Promise<{ paths: string[]; spaces: string[]; parents: string[] }> => {
114+
): Promise<{ paths: string[]; spaces: string[]; ParentCoordinateSystems: string[] }> => {
115115
const jsons = await Promise.allSettled(
116116
files.map((f) => loadJSON(f).catch(() => ({} as Record<string, unknown>))),
117117
)

0 commit comments

Comments
 (0)