Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hmbanan666 committed Jul 5, 2024
1 parent 9dc89c2 commit 35a01bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/MenuDesktop.svelte
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<script lang='ts'>
import type { Profile as IProfile } from '@hmbanan666/chat-game-api'
import Profile from './Profile.svelte'
import { page } from '$app/stores'
import couponSmall from '$lib/assets/website/coupon-64.png'
import coinSmall from '$lib/assets/website/coin-64.png'
import type { Profile as IProfile } from '@hmbanan666/chat-game-api'
const locale = $page.data.locale
const t = $page.data.t
Expand Down
4 changes: 2 additions & 2 deletions src/routes/[lang]/(website)/character/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<script lang='ts'>
import type { Profile } from '@hmbanan666/chat-game-api'
import { page } from '$app/stores'
import coinSmall from '$lib/assets/website/coin-64.png'
import type { Profile } from '@hmbanan666/chat-game-api'
export let data
let profile = $page.data.profileData as Profile | null
const profile = $page.data.profileData as Profile | null
</script>

<section class='hero'>
Expand Down

0 comments on commit 35a01bc

Please sign in to comment.