From 5ae642639a3137edef3e4fe7fc88d6ed30809957 Mon Sep 17 00:00:00 2001 From: Avasam Date: Thu, 1 Jul 2021 21:58:50 -0400 Subject: [PATCH] Fixed #250 for real this time Also raised an issue: https://github.com/CultureHQ/add-to-calendar/issues/601 --- global-scoreboard/src/Components/App.tsx | 21 +- tournament-scheduler/package-lock.json | 301 ++++++++++++++++-- tournament-scheduler/package.json | 9 +- .../@culturehq+add-to-calendar+1.1.2.patch | 13 + tournament-scheduler/src/Components/App.tsx | 43 ++- .../ScheduleWizard/ScheduleWizard.tsx | 2 + .../ScheduleViewer/ScheduleGroupViewer.tsx | 2 - tournament-scheduler/src/index.tsx | 1 + 8 files changed, 325 insertions(+), 67 deletions(-) create mode 100644 tournament-scheduler/patches/@culturehq+add-to-calendar+1.1.2.patch diff --git a/global-scoreboard/src/Components/App.tsx b/global-scoreboard/src/Components/App.tsx index 1096af45..a07c4b90 100644 --- a/global-scoreboard/src/Components/App.tsx +++ b/global-scoreboard/src/Components/App.tsx @@ -2,7 +2,7 @@ import './App.css' import { StatusCodes } from 'http-status-codes' import { useEffect, useState } from 'react' -import { Route } from 'react-router-dom' +import { Route, Switch } from 'react-router-dom' import Dashboard from './Dashboard/Dashboard' import GameSearch from './GameSearch/GameSearch' @@ -49,15 +49,16 @@ const App = () => { onLogout={() => logout(setCurrentUser)} /> - } - /> - + + + } + /> +