Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
kik4444 authored and kik4444 committed Apr 10, 2023
1 parent c77695e commit f6d401e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<script lang="ts">
import router from "$stores/router";
import { fade } from "svelte/transition";
import { animationDuration as duration } from "$lib/consts";
import { animationDuration as duration } from "$/lib/constants";
import Settings from "$/pages/settings/Settings.svelte";
import QuickReader from "$/pages/QuickReader.svelte";
Expand Down
1 change: 1 addition & 0 deletions src/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import "$/styles/base.css";
import appSettings from "$stores/app_settings";
import platformInfo from "$stores/platform_info";
import App from "$/App.svelte";
async function init() {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/pages/settings/FontChooser.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import fonts from "$stores/fonts";
import router from "$stores/router";
import { fade } from "svelte/transition";
import { animationDuration as duration } from "$lib/consts";
import { animationDuration as duration } from "$/lib/constants";
async function getFonts(): Promise<string[]> {
if (!$fonts.fontsLoaded) {
Expand Down

0 comments on commit f6d401e

Please sign in to comment.