From 3a8b2720410d7ff873e2614c6f4f3e811a817226 Mon Sep 17 00:00:00 2001 From: Reece Date: Fri, 14 Nov 2025 14:09:33 +0000 Subject: [PATCH] Fix import --- frontend/src/core/components/viewer/HistoryAPIBridge.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/core/components/viewer/HistoryAPIBridge.tsx b/frontend/src/core/components/viewer/HistoryAPIBridge.tsx index 30378b950..94dca3f6a 100644 --- a/frontend/src/core/components/viewer/HistoryAPIBridge.tsx +++ b/frontend/src/core/components/viewer/HistoryAPIBridge.tsx @@ -4,7 +4,7 @@ import { useAnnotationCapability } from '@embedpdf/plugin-annotation/react'; import { useSignature } from '@app/contexts/SignatureContext'; import { PdfAnnotationSubtype, uuidV4 } from '@embedpdf/models'; import type { HistoryAPI } from '@app/components/viewer/viewerTypes'; -import { ANNOTATION_RECREATION_DELAY_MS, ANNOTATION_VERIFICATION_DELAY_MS } from '@app/core/constants/app'; +import { ANNOTATION_RECREATION_DELAY_MS, ANNOTATION_VERIFICATION_DELAY_MS } from '@app/constants/app'; export const HistoryAPIBridge = forwardRef(function HistoryAPIBridge(_, ref) { const { provides: historyApi } = useHistoryCapability();