From d370bc4fe44dc50517447f4ad9ddf936a573b322 Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Wed, 16 Nov 2022 09:41:26 +0300 Subject: [PATCH] linter-is-sick --- src/stores/zine/reactions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stores/zine/reactions.ts b/src/stores/zine/reactions.ts index e553703f..d46db96a 100644 --- a/src/stores/zine/reactions.ts +++ b/src/stores/zine/reactions.ts @@ -34,6 +34,7 @@ export const updateReaction = async (reaction: Reaction) => { export const deleteReaction = async (reactionId: number) => { const resp = await apiClient.destroyReaction({ id: reactionId }) + console.debug(resp) return resp } export const useReactionsStore = (initialState: { reactions?: Reaction[] }) => {