fix: claim list sorting

This commit is contained in:
Sean Yesmunt 2019-06-26 18:07:07 -04:00
parent dddeb52f09
commit 08eb6367be

View file

@ -73,8 +73,7 @@ export default function SubscriptionsPage(props: Props) {
onClick={() => onClick()}
/>
}
// Fix the need to reverse this
uris={viewingSuggestedSubs ? suggestedSubscriptions.map(sub => sub.uri) : uris.reverse()}
uris={viewingSuggestedSubs ? suggestedSubscriptions.map(sub => sub.uri) : uris}
/>
</div>
</Page>