From 04d16a1141b598d44e6caaa85944bbb0ab61ac6e Mon Sep 17 00:00:00 2001 From: Yannick Bungers Date: Sat, 7 Oct 2023 13:59:48 +0200 Subject: [PATCH] Update issue link Signed-off-by: Yannick Bungers --- frontend/src/api/common/api-response.ts | 2 +- frontend/src/api/notes/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/api/common/api-response.ts b/frontend/src/api/common/api-response.ts index ab29c4c66..12a05ae64 100644 --- a/frontend/src/api/common/api-response.ts +++ b/frontend/src/api/common/api-response.ts @@ -47,7 +47,7 @@ export class ApiResponse { throw new Error('Response body does not seem to be JSON encoded.') } // TODO Responses should better be type validated - // see https://github.com/hedgedoc/react-client/issues/1219 + // see https://github.com/hedgedoc/hedgedoc/issues/2910 return (await this.response.json()) as ResponseType } } diff --git a/frontend/src/api/notes/index.ts b/frontend/src/api/notes/index.ts index 92a44e97f..b99e57f5c 100644 --- a/frontend/src/api/notes/index.ts +++ b/frontend/src/api/notes/index.ts @@ -86,7 +86,7 @@ export const deleteNote = async (noteIdOrAlias: string): Promise => { .withJsonBody({ keepMedia: false // TODO Ask whether the user wants to keep the media uploaded to the note. - // https://github.com/hedgedoc/react-client/issues/2288 + // https://github.com/hedgedoc/hedgedoc/issues/2928 }) .sendRequest() }