From 30e76a4493fb2af104bff35fc88d2e974f19a0ee Mon Sep 17 00:00:00 2001 From: rcmerci Date: Tue, 9 Apr 2024 12:32:00 +0800 Subject: [PATCH] chore: fix typo --- src/main/frontend/worker/undo_redo.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/frontend/worker/undo_redo.cljs b/src/main/frontend/worker/undo_redo.cljs index 05f594bedd..bcbcda97a2 100644 --- a/src/main/frontend/worker/undo_redo.cljs +++ b/src/main/frontend/worker/undo_redo.cljs @@ -258,7 +258,7 @@ when undo this op, this original entity-map will be transacted back into db") (conj! redo-ops-to-push rev-op))))) (when-let [rev-ops (not-empty (persistent! redo-ops-to-push))] (push-redo-ops repo (cons boundary rev-ops)))) - (prn "No further undo infomation"))) + (prn "No further undo information"))) (defn redo [repo] @@ -272,7 +272,7 @@ when undo this op, this original entity-map will be transacted back into db") (conj! undo-ops-to-push rev-op))))) (when-let [rev-ops (not-empty (persistent! undo-ops-to-push))] (push-undo-ops repo (cons boundary rev-ops)))) - (prn "No further redo infomation"))) + (prn "No further redo information"))) ;;; listen db changes and push undo-ops