Skip to content

Commit

Permalink
FIX: Fixed bad imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Klus committed Nov 19, 2024
1 parent b18cd1d commit de425bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { QuestionPostponementList } from "src/question-postponement-list";
import { DEFAULT_SETTINGS, SettingsUtil, SRSettings, upgradeSettings } from "src/settings";
import { TopicPath } from "src/topic-path";
import { convertToStringOrEmpty, TextDirection } from "src/utils/strings";
import TabViewManager from "./tab-view-manager/tab-view-manager";
import TabViewManager from "src/tab-view-manager";

export default class SRPlugin extends Plugin {
public data: PluginData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { PaneType, TFile, WorkspaceLeaf } from "obsidian";
import { SR_TAB_VIEW } from "src/constants";
import { OsrAppCore } from "src/core";
import { Deck } from "src/deck";
import { FlashcardReviewMode, IFlashcardReviewSequencer } from "src/flashcard-review-sequencer";
import { FlashcardReviewMode } from "src/flashcard-review-sequencer";
import { SRTabView } from "src/gui/sr-tab-view";
import SRPlugin from "src/main";
import { TabViewType } from "src/utils/types";
Expand Down

0 comments on commit de425bf

Please sign in to comment.