aboutsummaryrefslogtreecommitdiffstats
path: root/app/src
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2023-09-14 13:46:22 -0500
committerMatt Strapp <matt@mattstrapp.net>2023-09-14 14:19:35 -0500
commiteb90676ee4668c9d91b698242266a1b4c8a08de6 (patch)
tree9a9162c02269bd6b412803a4a793fbbf0fda5fa1 /app/src
parentFix sourcemaps + typing (diff)
downloadtrinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.tar
trinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.tar.gz
trinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.tar.bz2
trinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.tar.lz
trinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.tar.xz
trinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.tar.zst
trinkets-eb90676ee4668c9d91b698242266a1b4c8a08de6.zip
Comment out floatingUI
Diffstat (limited to 'app/src')
-rw-r--r--app/src/routes/+layout.svelte10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/routes/+layout.svelte b/app/src/routes/+layout.svelte
index 93a41b1..8a70575 100644
--- a/app/src/routes/+layout.svelte
+++ b/app/src/routes/+layout.svelte
@@ -7,18 +7,18 @@
import { AppShell, AppBar } from '@skeletonlabs/skeleton';
// Floating UI for Popups
- import { computePosition, autoUpdate, flip, shift, offset, arrow } from '@floating-ui/dom';
- import { storePopup } from '@skeletonlabs/skeleton';
- storePopup.set({ computePosition, autoUpdate, flip, shift, offset, arrow });
+ // import { computePosition, autoUpdate, flip, shift, offset, arrow } from '@floating-ui/dom';
+ // import { storePopup } from '@skeletonlabs/skeleton';
+ // storePopup.set({ computePosition, autoUpdate, flip, shift, offset, arrow });
onMount(async () => {
if (pwaInfo) {
registerSW({
immediate: true,
- onRegistered(r) {
+ onRegistered(r: ServiceWorkerRegistration) {
console.log(`SW Registered: ${r}`)
},
- onRegisterError(error) {
+ onRegisterError(error: Error) {
console.log('SW registration error', error)
},
onOfflineReady() {