Merge pull request #196 from lamarios/main

Make notifications from subscription feed at the top of the list
This commit is contained in:
Ward
2024-05-01 16:26:53 +12:00
committed by GitHub
@@ -8,7 +8,7 @@
export let data;
let currentPage = 1;
$: videos = [...data.feed.videos, ...data.feed.notifications];
$: videos = [...data.feed.notifications, ...data.feed.videos];
activePageStore.set('subscriptions');