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[] }) => {