Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/generate_matches_json.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void main() async {
jsonFile.createSync(recursive: true);
}

var (redAlliance, blueAlliance) = await getEventTeams("2024isde1", tbaAPIKey);
var (redAlliance, blueAlliance) = await getEventTeams("2025isde1", tbaAPIKey);

Map<String, dynamic> blueJson =
blueAlliance.map((key, value) => MapEntry(key.toString(), value));
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/admin_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class _AdminPageState extends State<AdminPage>
List<FormPageData> _matchPages = [];
List<FormPageData> _pitPages = [];
int _currentTab = 0;
String eventKey = "2024isos2";
String eventKey = "2025isde1";

@override
void initState() {
Expand Down
2 changes: 1 addition & 1 deletion lib/services/scouting/scouting.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Scouting {

static List<BuildContext> _matchPagesContexts = [];

static const String competitionName = "2024isos2";
static const String competitionName = "2025isde1";

static int _currentPage = -1;

Expand Down