Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/routes/strategy/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import { onMount } from 'svelte'
import { onMount, onDestroy } from 'svelte'
import type { Location, Presence } from '@black-whale/domain'
import type { WorldEntity, WorldState } from '@black-whale/canon-engine'
import type { PageData } from './$types'
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/routes/tour/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@
const gyoMode = $derived(hatsuSession.nen.gyo)
const currentMangaViews = $derived(viewsForSpace(currentSpace?.id ?? null))

const downloadBlob = (blob: Blob, filename: string) => {
const _downloadBlob = (blob: Blob, filename: string) => {
const url = URL.createObjectURL(blob)
const a = document.createElement('a')
a.href = url
Expand Down