From 861462b41e19254a0575a969499d2a9fa59afa6f Mon Sep 17 00:00:00 2001 From: henry Date: Tue, 17 Mar 2026 20:16:23 +0100 Subject: [PATCH] Re-enable all competitions in the picker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Championship, Brasileirão, European Championship and FIFA World Cup are now shown as tiles on the home screen. Co-Authored-By: Claude Sonnet 4.6 --- src/competitions.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/competitions.js b/src/competitions.js index f514907..11206d7 100644 --- a/src/competitions.js +++ b/src/competitions.js @@ -7,10 +7,10 @@ const COMPETITIONS = [ { code: 'FL1', name: 'Ligue 1', country: 'France' }, { code: 'DED', name: 'Eredivisie', country: 'Netherlands' }, { code: 'PPL', name: 'Primeira Liga', country: 'Portugal' }, -// { code: 'ELC', name: 'Championship', country: 'England' }, -// { code: 'BSA', name: 'Brasileirão Série A', country: 'Brazil' }, - //{ code: 'EC', name: 'European Championship', country: 'Europe' }, - //{ code: 'WC', name: 'FIFA World Cup', country: 'World' }, + { code: 'ELC', name: 'Championship', country: 'England' }, + { code: 'BSA', name: 'Brasileirão Série A', country: 'Brazil' }, + { code: 'EC', name: 'European Championship', country: 'Europe' }, + { code: 'WC', name: 'FIFA World Cup', country: 'World' }, ] export default COMPETITIONS