Skip to content

Commit

Permalink
fix typechecking
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Büßemeyer authored and Michael Büßemeyer committed Oct 24, 2024
1 parent 1a3675f commit 69ec689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/javascripts/admin/admin_rest_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2035,7 +2035,7 @@ export function computeAdHocMesh(
},
},
);
const neighbors = Utils.parseMaybe(headers.neighbors) || [];
const neighbors = (Utils.parseMaybe(headers.neighbors) as number[] | null) || [];
return {
buffer,
neighbors,
Expand Down

0 comments on commit 69ec689

Please sign in to comment.