Update issue link

Signed-off-by: Yannick Bungers <git@innay.de>
This commit is contained in:
Yannick Bungers 2023-10-07 13:59:48 +02:00 committed by David Mehren
parent 944c67e7f1
commit 04d16a1141
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ export class ApiResponse<ResponseType> {
throw new Error('Response body does not seem to be JSON encoded.') throw new Error('Response body does not seem to be JSON encoded.')
} }
// TODO Responses should better be type validated // 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 return (await this.response.json()) as ResponseType
} }
} }

View file

@ -86,7 +86,7 @@ export const deleteNote = async (noteIdOrAlias: string): Promise<void> => {
.withJsonBody({ .withJsonBody({
keepMedia: false keepMedia: false
// TODO Ask whether the user wants to keep the media uploaded to the note. // 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() .sendRequest()
} }