Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Feb 4, 2023
1 parent 9c651db commit 97309ec
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion interface/components/navigation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
</div>

<script lang="ts">
import { active } from "tinro"
import { active } from "@baileyherbert/tinro"
</script>
2 changes: 1 addition & 1 deletion interface/components/routeTransition.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
{/key}

<script>
import { router } from "tinro"
import { router } from "@baileyherbert/tinro"
import { fade } from "svelte/transition"
</script>
2 changes: 1 addition & 1 deletion interface/layout/app.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</div>

<script lang="ts">
import { Route, router } from "tinro"
import { Route, router } from "@baileyherbert/tinro"
import { onMount } from "svelte"
import { state } from "../stores/state"
import { number, version } from "../../build.json"
Expand Down
2 changes: 1 addition & 1 deletion interface/utils/navigate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { shell } from "@tauri-apps/api"
import { router } from "tinro"
import { router } from "@baileyherbert/tinro"

/**
* Go to the specified link
Expand Down
64 changes: 32 additions & 32 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"check": "svelte-check && tsc --noEmit && eslint ."
},
"devDependencies": {
"@baileyherbert/tinro": "^1.0.0",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@rgossiaux/svelte-headlessui": "^1.0.2",
Expand All @@ -44,13 +45,12 @@
"svelte-check": "^3.0.3",
"svelte-preprocess": "^5.0.1",
"tailwindcss": "^3.2.4",
"tinro": "^0.6.12",
"typescript": "^4.9.4"
},
"dependencies": {
"otpauth": "^8.0.3",
"protocol-buffers": "^5.0.0",
"qrcode-decoder": "^0.3.3",
"qrcode-decoder": "^0.2.2",
"qrcode-generator": "^1.4.4",
"ua-parser-js": "^1.0.33"
}
Expand Down

0 comments on commit 97309ec

Please sign in to comment.