Skip to content

Commit

Permalink
Update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Feb 23, 2024
1 parent e33b1f4 commit 120e049
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/common/dialog/DocumentPickerDialog.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script>
import { modification } from "@/viewer/modification/modification.js";
import { modification } from "@/viewer/modification/modification";
import Documents from "@/pages/app/Documents.svelte";
import emitter from "@/emit.js";
Expand Down
2 changes: 1 addition & 1 deletion src/pages/viewer/ModifyImage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Image from "@/common/Image.svelte";
import { viewer } from "@/viewer/viewer.js";
import { pageImageUrl } from "@/api/viewer.js";
import { modification } from "@/viewer/modification/modification.js";
import { modification } from "@/viewer/modification/modification";
import { getDocument } from "@/api/document.js";
export let id;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/viewer/ThumbnailBody.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import { viewer } from "@/viewer/viewer.js";
import { layout } from "@/viewer/layout.js";
import { restorePosition, changeMode } from "@/viewer/document.js";
import { ModificationSpec } from "@/viewer/modification/modifySpec.js";
import { modification } from "@/viewer/modification/modification.js";
import { ModificationSpec } from "@/viewer/modification/modifySpec";
import { modification } from "@/viewer/modification/modification";
$: modify = $layout.modifying;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/viewer/pane/ModifyPane.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import Modification from "@/viewer/modification/Modification.svelte";
import ModifyImage from "../ModifyImage.svelte";
import { modification } from "@/viewer/modification/modification.js";
import { modification } from "@/viewer/modification/modification";
import { viewer } from "@/viewer/viewer.js";
import { cancelActions } from "@/viewer/document.js";
import { showInsertDialog, modify } from "@/viewer/layout.js";
Expand Down
2 changes: 1 addition & 1 deletion src/viewer/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
import { Note } from "@/structure/note.js";
import { DEFAULT_EXPAND } from "../api/common.js";
import { inIframe } from "@/util/iframe.js";
import { modification } from "./modification/modification.js";
import { modification } from "./modification/modification.ts";

import {
MOBILE_BREAKPOINT,
Expand Down

0 comments on commit 120e049

Please sign in to comment.