More work on pl-api migration

Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-08-06 23:19:00 +02:00
parent 32c68a9221
commit 0fc8a2993f
53 changed files with 119 additions and 183 deletions

View File

@ -599,7 +599,7 @@ const fetchComposeSuggestionsTags = (dispatch: AppDispatch, getState: () => Root
const { trends } = getFeatures(instance);
if (trends) {
const currentTrends = state.trends.items;
const currentTrends = state.trends.items.toArray();
return dispatch(updateSuggestionTags(composeId, token, currentTrends));
}