Skip to content

Commit

Permalink
tos: fix file name
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelCoding committed Aug 1, 2024
1 parent 81feef5 commit dee19b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/network/join/join.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ export class JoinComponent {


protected buildDownloadLinkTermsOfService(): string {
return new URL(`${API_URL}/documents/download/DD-IX TermsofService.pdf`).toString();
return new URL(`${API_URL}/documents/download/DD-IX_TermsofService.pdf`).toString();
}

protected buildBackgroundImageTermsofService(): string {
return new URL(`${API_URL}/documents/download/DD-IX TermsofService.webp`).toString();
return new URL(`${API_URL}/documents/download/DD-IX_TermsofService.webp`).toString();
}
}

0 comments on commit dee19b0

Please sign in to comment.