Enhance security and error handling in various components by refining error catch blocks to ignore specific errors, improving code clarity and consistency across the application.
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 4m10s
Some checks failed
Code Analysis (JS/Vue) / analyze (push) Failing after 4m10s
This commit is contained in:
@@ -280,7 +280,7 @@ const upcomingGames = computed(() => {
|
||||
|
||||
// Nur Spiele der nächsten 7 Tage
|
||||
return gameDate >= today && gameDate <= in7Days
|
||||
} catch (error) {
|
||||
} catch (_error) {
|
||||
return false
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user