From 29fd1f39ea270170aa505aa42268bd4b81489856 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sun, 8 Jan 2023 22:32:27 +0100 Subject: [PATCH] fix(frontend): import type from the correct file Signed-off-by: Philip Molares --- .../editor-pane/tool-bar/formatters/replace-selection.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/editor-page/editor-pane/tool-bar/formatters/replace-selection.test.ts b/frontend/src/components/editor-page/editor-pane/tool-bar/formatters/replace-selection.test.ts index 8da97f971..cda11cdb6 100644 --- a/frontend/src/components/editor-page/editor-pane/tool-bar/formatters/replace-selection.test.ts +++ b/frontend/src/components/editor-page/editor-pane/tool-bar/formatters/replace-selection.test.ts @@ -1,10 +1,10 @@ /* - * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file) + * SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ -import type { ContentEdits } from './changes' import { replaceSelection } from './replace-selection' +import type { ContentEdits } from './types/changes' describe('replace selection', () => { it('inserts a text after the from-cursor if no to-cursor is present', () => {