Skip to content

Commit

Permalink
fix: the new tab now returns the expected type
Browse files Browse the repository at this point in the history
  • Loading branch information
GresilleSiffle committed Oct 9, 2023
1 parent bfac3bc commit 8bcbb4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const VideoInput = ({
limit: 20,
ntile: 20,
});
return (response.results ?? []).map((rl) => rl.entity);
return response.results ?? [];
},
disabled: !isLoggedIn,
},
Expand Down

0 comments on commit 8bcbb4d

Please sign in to comment.