Skip to content

Commit

Permalink
don't use typeInfo for list type
Browse files Browse the repository at this point in the history
  • Loading branch information
thoniTUB committed Sep 12, 2024
1 parent ccc4462 commit 06d30b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static FrontendResultType from(ResultType resultType) {
if (resultType instanceof ResultType.ListT<?> listT) {
return List.builder()
.elementType(from(listT.getElementType()))
.type(listT.typeInfo()).build();
.type("LIST").build();
}

return FrontendResultType.builder().type(resultType.typeInfo()).build();
Expand Down

0 comments on commit 06d30b4

Please sign in to comment.