Lint fixes

This commit is contained in:
WardPearce
2026-02-16 03:32:22 +13:00
parent 726697b76a
commit 08304fd588
2 changed files with 2 additions and 3 deletions
@@ -1,5 +1,4 @@
<script lang="ts">
import { isUnrestrictedPlatform, isYTBackend } from '$lib/misc';
import { _ } from '$lib/i18n';
import {
invidiousAuthStore,
@@ -48,8 +48,8 @@ export async function load() {
videos = await sortVideosByFavourites([...feed.notifications, ...feed.videos]);
feedCacheStore.set({ ...get(feedCacheStore), subscription: videos });
})
.catch((error) => {
error(500, error);
.catch((errorMsg) => {
error(500, errorMsg);
})
.finally(() => {
feedLoadingStore.set(false);