Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

fix(add-pin): match TS request with Joi schema #460

Merged
merged 1 commit into from
Feb 13, 2023
Merged
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
4 changes: 2 additions & 2 deletions src/routes/graph/add-pin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Request {
fields: FieldsToServerFull;
typeKey?: string | null;
edgeHashId?: string | null;
pinGridsHashIds?: string[];
pinGridsHashIds?: string[] | null;
};
}

Expand All @@ -25,7 +25,7 @@ interface EffectiveRequest {
fields: FieldsToServerFull;
typeKey: string | null;
edgeHashId: string | null;
pinGridsHashIds: string[];
pinGridsHashIds: string[] | null;
};
}

Expand Down