From 60c352a849e317b46c251b6bc7afa5ccabbb5259 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Tue, 15 Nov 2022 17:05:14 +0530 Subject: [PATCH] Fix casing --- src/lib/util/fileLoaders/gist.ts | 2 +- src/lib/util/migrations.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/util/fileLoaders/gist.ts b/src/lib/util/fileLoaders/gist.ts index 07879e3d..6e43423d 100644 --- a/src/lib/util/fileLoaders/gist.ts +++ b/src/lib/util/fileLoaders/gist.ts @@ -4,7 +4,7 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ import type { State } from '$lib/types'; import { defaultState } from '$lib/util/state'; -import { addHistoryEntry } from '$lib/components/History/History'; +import { addHistoryEntry } from '$lib/components/History/history'; const codeFileName = 'code.mmd'; const configFileName = 'config.json'; diff --git a/src/lib/util/migrations.ts b/src/lib/util/migrations.ts index 1645f224..ba6a7c53 100644 --- a/src/lib/util/migrations.ts +++ b/src/lib/util/migrations.ts @@ -1,6 +1,6 @@ import { writable, get, type Writable } from 'svelte/store'; import { persist, localStorage } from '$lib/util/persist'; -import { injectHistoryIDs } from '$lib/components/History/History'; +import { injectHistoryIDs } from '$lib/components/History/history'; import { logEvent } from './stats'; interface MigrationState {