merge: integrate mvp trip features and bun migration

This commit is contained in:
2026-03-08 14:46:20 +00:00
38 changed files with 2833 additions and 9720 deletions

View File

@@ -4,6 +4,7 @@
import { addToast } from '$lib/toasts';
import { CURRENCY_LABELS, CURRENCY_OPTIONS } from '$lib/money';
import type { ImmichIntegration, User } from '$lib/types.js';
import type { PageData } from './$types';
import { onMount } from 'svelte';
import { browser } from '$app/environment';
import { t } from 'svelte-i18n';
@@ -14,7 +15,7 @@
import StravaLogo from '$lib/assets/strava.svg';
import WandererLogoSrc from '$lib/assets/wanderer.svg';
export let data: any;
export let data: PageData;
console.log(data);
let user: User;
let emails: typeof data.props.emails;

View File

@@ -1,5 +1,5 @@
<script lang="ts">
import type { PageData } from '../$types';
import type { PageData } from './$types';
import { t } from 'svelte-i18n';
export let data: PageData;