Skip to content
Snippets Groups Projects

Resolve "Add routes and template for Presentation view"

Merged Albin Henriksson requested to merge 54-add-routes-and-template-for-presentation-view into dev
9 files
+ 133
10
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -7,7 +7,6 @@ export const getPresentationCompetition = (id: string) => async (dispatch: AppDi
await axios
.get(`/competitions/${id}`)
.then((res) => {
console.log(res)
dispatch({
type: Types.SET_PRESENTATION_COMPETITION,
payload: res.data,
@@ -22,7 +21,6 @@ export const getPresentationTeams = (id: string) => async (dispatch: AppDispatch
await axios
.get(`/competitions/${id}/teams`)
.then((res) => {
console.log(res)
dispatch({
type: Types.SET_PRESENTATION_TEAMS,
payload: res.data.items,
Loading