Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
info_url can be null
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiebe-Vercoutter committed May 21, 2022
1 parent 9a5d864 commit 047dd8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/data/interfaces/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export interface Project {
name: string;

/** An url with more info */
infoUrl: string;
infoUrl: string | null;

/** The coaches of this project */
coaches: Coach[];
Expand Down Expand Up @@ -90,7 +90,7 @@ export interface CreateProject {
name: string;

/** An url with more info */
info_url: string;
info_url: string | null;

/** The partners that belong to this project */
partners: string[];
Expand Down

0 comments on commit 047dd8b

Please sign in to comment.