Skip to content

Commit 23f8184

Browse files
committed
fix: Type checking errors
1 parent ed44812 commit 23f8184

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
@@ -95,7 +95,7 @@ const multiAssociationLookup: Record<string, MultiLoadFunction> = {
9595
coordsystems: async (
9696
files: BIDSFile[],
9797
options: any,
98-
): Promise<{ paths: string[]; spaces: string[]; parents: string[] }> => {
98+
): Promise<{ paths: string[]; spaces: string[]; ParentCoordinateSystems: string[] }> => {
9999
const jsons = await Promise.allSettled(
100100
files.map((f) => loadJSON(f).catch(() => ({} as Record<string, unknown>))),
101101
)

0 commit comments

Comments
 (0)